chore: update CEM version, add litelement flag
This commit is contained in:
parent
8a8c96eacc
commit
12b3fa116d
42 changed files with 121 additions and 124 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -36,10 +36,8 @@ jobs:
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
# at the moment postinstall transforms package.jsons and removes newline at the bottom, so we do a git restore after installing
|
|
||||||
# that way we don't publish package.jsons without a newline at the bottom.
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: yarn --frozen-lockfile && git restore .
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Create Release Pull Request or Publish to npm
|
- name: Create Release Pull Request or Publish to npm
|
||||||
id: changesets
|
id: changesets
|
||||||
|
|
|
||||||
4
.github/workflows/verify.yml
vendored
4
.github/workflows/verify.yml
vendored
|
|
@ -26,10 +26,8 @@ jobs:
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-yarn-
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
# at the moment postinstall transforms package.jsons and removes newline at the bottom, so we do a git restore after installing
|
|
||||||
# that way we don't get linting errors from eclint for missing newlines in package.jsons.
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: yarn --frozen-lockfile && git restore .
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"format": "npm run format:eslint && npm run format:prettier",
|
"format": "npm run format:eslint && npm run format:prettier",
|
||||||
"format:eslint": "eslint --ext .js,.html . --fix",
|
"format:eslint": "eslint --ext .js,.html . --fix",
|
||||||
"format:prettier": "prettier \"**/*.{js,md}\" --write",
|
"format:prettier": "prettier \"**/*.{js,md}\" --write",
|
||||||
|
"postinstall": "npm run custom-elements-manifest",
|
||||||
"lint": "run-p lint:*",
|
"lint": "run-p lint:*",
|
||||||
"lint:eclint": "git ls-files | xargs eclint check",
|
"lint:eclint": "git ls-files | xargs eclint check",
|
||||||
"lint:eslint": "eslint --ext .js,.html .",
|
"lint:eslint": "eslint --ext .js,.html .",
|
||||||
|
|
@ -24,7 +25,6 @@
|
||||||
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
|
"lint:prettier": "prettier \"**/*.js\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
|
||||||
"lint:types": "tsc",
|
"lint:types": "tsc",
|
||||||
"lint:versions": "node ./scripts/lint-versions.js",
|
"lint:versions": "node ./scripts/lint-versions.js",
|
||||||
"postinstall": "npm run custom-elements-manifest",
|
|
||||||
"release": "npm run build:types && npm run build:docs && changeset publish",
|
"release": "npm run build:types && npm run build:docs && changeset publish",
|
||||||
"start": "npm run storybook",
|
"start": "npm run storybook",
|
||||||
"storybook": "start-storybook -p 9001",
|
"storybook": "start-storybook -p 9001",
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
"@changesets/cli": "^2.9.2",
|
"@changesets/cli": "^2.9.2",
|
||||||
"@commitlint/cli": "^7.0.0",
|
"@commitlint/cli": "^7.0.0",
|
||||||
"@commitlint/config-conventional": "^7.0.0",
|
"@commitlint/config-conventional": "^7.0.0",
|
||||||
"@custom-elements-manifest/analyzer": "^0.1.7",
|
"@custom-elements-manifest/analyzer": "^0.1.8",
|
||||||
"@mdjs/core": "^0.3.1",
|
"@mdjs/core": "^0.3.1",
|
||||||
"@open-wc/building-rollup": "^1.2.1",
|
"@open-wc/building-rollup": "^1.2.1",
|
||||||
"@open-wc/demoing-storybook": "^2.0.2",
|
"@open-wc/demoing-storybook": "^2.0.2",
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group accordion",
|
"debug": "cd ../../ && npm run debug -- --group accordion",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group accordion",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group accordion",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group accordion",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group accordion",
|
||||||
|
|
@ -45,9 +45,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-accordion": "./lion-accordion.js"
|
"./lion-accordion": "./lion-accordion.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group ajax",
|
"debug": "cd ../../ && npm run debug -- --group ajax",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group ajax",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group ajax",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group ajax",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group ajax",
|
||||||
|
|
@ -41,6 +41,6 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"exports": "./index.js",
|
"customElementsManifest": "custom-elements.json",
|
||||||
"customElementsManifest": "custom-elements.json"
|
"exports": "./index.js"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group button",
|
"debug": "cd ../../ && npm run debug -- --group button",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group button",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group button",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group button",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group button",
|
||||||
|
|
@ -45,9 +45,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-button": "./lion-button.js"
|
"./lion-button": "./lion-button.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'test-helpers/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group calendar",
|
"debug": "cd ../../ && npm run debug -- --group calendar",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group calendar",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group calendar",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group calendar",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group calendar",
|
||||||
|
|
@ -46,10 +46,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-calendar": "./lion-calendar.js",
|
"./lion-calendar": "./lion-calendar.js",
|
||||||
"./test-helpers": "./test-helpers.js"
|
"./test-helpers": "./test-helpers.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group checkbox-group",
|
"debug": "cd ../../ && npm run debug -- --group checkbox-group",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group checkbox-group",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group checkbox-group",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group checkbox-group",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group checkbox-group",
|
||||||
|
|
@ -49,11 +49,11 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-checkbox": "./lion-checkbox.js",
|
"./lion-checkbox": "./lion-checkbox.js",
|
||||||
"./lion-checkbox-group": "./lion-checkbox-group.js",
|
"./lion-checkbox-group": "./lion-checkbox-group.js",
|
||||||
"./lion-checkbox-indeterminate": "./lion-checkbox-indeterminate.js"
|
"./lion-checkbox-indeterminate": "./lion-checkbox-indeterminate.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'demo/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group collapsible",
|
"debug": "cd ../../ && npm run debug -- --group collapsible",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group collapsible",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group collapsible",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group collapsible",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group collapsible",
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-collapsible": "./lion-collapsible.js"
|
"./lion-collapsible": "./lion-collapsible.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group combobox",
|
"debug": "cd ../../ && npm run debug -- --group combobox",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group combobox",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group combobox",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group combobox",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group combobox",
|
||||||
|
|
@ -58,9 +58,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-combobox": "./lion-combobox.js"
|
"./lion-combobox": "./lion-combobox.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'test-helpers/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group core",
|
"debug": "cd ../../ && npm run debug -- --group core",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group core",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group core",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group core",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group core",
|
||||||
|
|
@ -48,11 +48,11 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./test-helpers/*": "./test-helpers/*",
|
"./test-helpers/*": "./test-helpers/*",
|
||||||
"./closestPolyfill": "./src/closestPolyfill.js",
|
"./closestPolyfill": "./src/closestPolyfill.js",
|
||||||
"./differentKeyEventNamesShimIE": "./src/differentKeyEventNamesShimIE.js"
|
"./differentKeyEventNamesShimIE": "./src/differentKeyEventNamesShimIE.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group dialog",
|
"debug": "cd ../../ && npm run debug -- --group dialog",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group dialog",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group dialog",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group dialog",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group dialog",
|
||||||
|
|
@ -47,9 +47,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-dialog": "./lion-dialog.js"
|
"./lion-dialog": "./lion-dialog.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group fieldset",
|
"debug": "cd ../../ && npm run debug -- --group fieldset",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group fieldset",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group fieldset",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group fieldset",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group fieldset",
|
||||||
|
|
@ -47,9 +47,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-fieldset": "./lion-fieldset.js"
|
"./lion-fieldset": "./lion-fieldset.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'test-helpers/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group form-core",
|
"debug": "cd ../../ && npm run debug -- --group form-core",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-core",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-core",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-core",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-core",
|
||||||
|
|
@ -47,12 +47,12 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./test-helpers/*": "./test-helpers/*",
|
"./test-helpers/*": "./test-helpers/*",
|
||||||
"./test-suites/*": "./test-suites/*",
|
"./test-suites/*": "./test-suites/*",
|
||||||
"./lion-field": "./lion-field.js",
|
"./lion-field": "./lion-field.js",
|
||||||
"./lion-validation-feedback": "./lion-validation-feedback.js"
|
"./lion-validation-feedback": "./lion-validation-feedback.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group form-integrations",
|
"debug": "cd ../../ && npm run debug -- --group form-integrations",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-integrations",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-integrations",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-integrations",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-integrations",
|
||||||
|
|
@ -67,6 +67,6 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"exports": "./index.js",
|
"customElementsManifest": "custom-elements.json",
|
||||||
"customElementsManifest": "custom-elements.json"
|
"exports": "./index.js"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group form",
|
"debug": "cd ../../ && npm run debug -- --group form",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form",
|
||||||
|
|
@ -45,9 +45,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-form": "./lion-form.js"
|
"./lion-form": "./lion-form.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"sortEachDepth"
|
"sortEachDepth"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group helpers",
|
"debug": "cd ../../ && npm run debug -- --group helpers",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group helpers",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group helpers",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group helpers",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group helpers",
|
||||||
|
|
@ -44,10 +44,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./sb-action-logger": "./sb-action-logger.js",
|
"./sb-action-logger": "./sb-action-logger.js",
|
||||||
"./sb-locale-switcher": "./sb-locale-switcher.js"
|
"./sb-locale-switcher": "./sb-locale-switcher.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group icon",
|
"debug": "cd ../../ && npm run debug -- --group icon",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group icon",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group icon",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group icon",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group icon",
|
||||||
|
|
@ -47,9 +47,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-icon": "./lion-icon.js"
|
"./lion-icon": "./lion-icon.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-amount",
|
"debug": "cd ../../ && npm run debug -- --group input-amount",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-amount",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-amount",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-amount",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-amount",
|
||||||
|
|
@ -49,9 +49,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-amount": "./lion-input-amount.js"
|
"./lion-input-amount": "./lion-input-amount.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-date",
|
"debug": "cd ../../ && npm run debug -- --group input-date",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-date",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-date",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-date",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-date",
|
||||||
|
|
@ -49,9 +49,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-date": "./lion-input-date.js"
|
"./lion-input-date": "./lion-input-date.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'test-helpers/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-datepicker",
|
"debug": "cd ../../ && npm run debug -- --group input-datepicker",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-datepicker",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-datepicker",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-datepicker",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-datepicker",
|
||||||
|
|
@ -54,10 +54,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./test-helpers/*": "./test-helpers/*",
|
"./test-helpers/*": "./test-helpers/*",
|
||||||
"./lion-input-datepicker": "./lion-input-datepicker.js"
|
"./lion-input-datepicker": "./lion-input-datepicker.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-email",
|
"debug": "cd ../../ && npm run debug -- --group input-email",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-email",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-email",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-email",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-email",
|
||||||
|
|
@ -49,9 +49,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-email": "./lion-input-email.js"
|
"./lion-input-email": "./lion-input-email.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-iban",
|
"debug": "cd ../../ && npm run debug -- --group input-iban",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-iban",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-iban",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-iban",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-iban",
|
||||||
|
|
@ -50,9 +50,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-iban": "./lion-input-iban.js"
|
"./lion-input-iban": "./lion-input-iban.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-range",
|
"debug": "cd ../../ && npm run debug -- --group input-range",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-range",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-range",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-range",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-range",
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-range": "./lion-input-range.js"
|
"./lion-input-range": "./lion-input-range.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input-stepper",
|
"debug": "cd ../../ && npm run debug -- --group input-stepper",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-stepper",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-stepper",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-stepper",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-stepper",
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input-stepper": "./lion-input-stepper.js"
|
"./lion-input-stepper": "./lion-input-stepper.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group input",
|
"debug": "cd ../../ && npm run debug -- --group input",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input",
|
||||||
|
|
@ -45,9 +45,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-input": "./lion-input.js"
|
"./lion-input": "./lion-input.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group listbox",
|
"debug": "cd ../../ && npm run debug -- --group listbox",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group listbox",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group listbox",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group listbox",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group listbox",
|
||||||
|
|
@ -49,12 +49,12 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./test-suites/*": "./test-suites/*",
|
"./test-suites/*": "./test-suites/*",
|
||||||
"./lion-listbox": "./lion-listbox.js",
|
"./lion-listbox": "./lion-listbox.js",
|
||||||
"./lion-option": "./lion-option.js",
|
"./lion-option": "./lion-option.js",
|
||||||
"./lion-options": "./lion-options.js"
|
"./lion-options": "./lion-options.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'test-helpers/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group localize",
|
"debug": "cd ../../ && npm run debug -- --group localize",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group localize",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group localize",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group localize",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group localize",
|
||||||
|
|
@ -45,9 +45,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./test-helpers": "./test-helpers.js"
|
"./test-helpers": "./test-helpers.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group overlays",
|
"debug": "cd ../../ && npm run debug -- --group overlays",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group overlays",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group overlays",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group overlays",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group overlays",
|
||||||
|
|
@ -49,10 +49,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./translations/*": "./translations/*",
|
"./translations/*": "./translations/*",
|
||||||
"./test-suites/*": "./test-suites/*"
|
"./test-suites/*": "./test-suites/*"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group pagination",
|
"debug": "cd ../../ && npm run debug -- --group pagination",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group pagination",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group pagination",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group pagination",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group pagination",
|
||||||
|
|
@ -46,9 +46,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-pagination": "./lion-pagination.js"
|
"./lion-pagination": "./lion-pagination.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'demo/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group progress-indicator",
|
"debug": "cd ../../ && npm run debug -- --group progress-indicator",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group progress-indicator",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group progress-indicator",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group progress-indicator",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group progress-indicator",
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-progress-indicator": "./lion-progress-indicator.js"
|
"./lion-progress-indicator": "./lion-progress-indicator.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group radio-group",
|
"debug": "cd ../../ && npm run debug -- --group radio-group",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group radio-group",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group radio-group",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group radio-group",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group radio-group",
|
||||||
|
|
@ -48,10 +48,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-radio": "./lion-radio.js",
|
"./lion-radio": "./lion-radio.js",
|
||||||
"./lion-radio-group": "./lion-radio-group.js"
|
"./lion-radio-group": "./lion-radio-group.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group select-rich",
|
"debug": "cd ../../ && npm run debug -- --group select-rich",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select-rich",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select-rich",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select-rich",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select-rich",
|
||||||
|
|
@ -54,12 +54,12 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-option": "./lion-option.js",
|
"./lion-option": "./lion-option.js",
|
||||||
"./lion-options": "./lion-options.js",
|
"./lion-options": "./lion-options.js",
|
||||||
"./lion-select-invoker": "./lion-select-invoker.js",
|
"./lion-select-invoker": "./lion-select-invoker.js",
|
||||||
"./lion-select-rich": "./lion-select-rich.js"
|
"./lion-select-rich": "./lion-select-rich.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group select",
|
"debug": "cd ../../ && npm run debug -- --group select",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select",
|
||||||
|
|
@ -46,9 +46,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-select": "./lion-select.js"
|
"./lion-select": "./lion-select.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*' 'demo/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group singleton-manager",
|
"debug": "cd ../../ && npm run debug -- --group singleton-manager",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group singleton-manager",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group singleton-manager",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group singleton-manager",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group singleton-manager",
|
||||||
|
|
@ -41,6 +41,6 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"exports": "./index.js",
|
"customElementsManifest": "custom-elements.json",
|
||||||
"customElementsManifest": "custom-elements.json"
|
"exports": "./index.js"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group steps",
|
"debug": "cd ../../ && npm run debug -- --group steps",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group steps",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group steps",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group steps",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group steps",
|
||||||
|
|
@ -46,10 +46,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-step": "./lion-step.js",
|
"./lion-step": "./lion-step.js",
|
||||||
"./lion-steps": "./lion-steps.js"
|
"./lion-steps": "./lion-steps.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group switch",
|
"debug": "cd ../../ && npm run debug -- --group switch",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group switch",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group switch",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group switch",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group switch",
|
||||||
|
|
@ -48,10 +48,10 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-switch": "./lion-switch.js",
|
"./lion-switch": "./lion-switch.js",
|
||||||
"./lion-switch-button": "./lion-switch-button.js"
|
"./lion-switch-button": "./lion-switch-button.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group tabs",
|
"debug": "cd ../../ && npm run debug -- --group tabs",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group tabs",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group tabs",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group tabs",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group tabs",
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group textarea",
|
"debug": "cd ../../ && npm run debug -- --group textarea",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group textarea",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group textarea",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group textarea",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group textarea",
|
||||||
|
|
@ -48,9 +48,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-textarea": "./lion-textarea.js"
|
"./lion-textarea": "./lion-textarea.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group tooltip",
|
"debug": "cd ../../ && npm run debug -- --group tooltip",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group tooltip",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group tooltip",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group tooltip",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group tooltip",
|
||||||
|
|
@ -47,9 +47,9 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
"customElementsManifest": "custom-elements.json",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
"./lion-tooltip": "./lion-tooltip.js"
|
"./lion-tooltip": "./lion-tooltip.js"
|
||||||
},
|
}
|
||||||
"customElementsManifest": "custom-elements.json"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
|
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude 'docs/**/*'",
|
||||||
"debug": "cd ../../ && npm run debug -- --group validate-messages",
|
"debug": "cd ../../ && npm run debug -- --group validate-messages",
|
||||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group validate-messages",
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group validate-messages",
|
||||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group validate-messages",
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group validate-messages",
|
||||||
|
|
@ -46,6 +46,6 @@
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"exports": "./index.js",
|
"customElementsManifest": "custom-elements.json",
|
||||||
"customElementsManifest": "custom-elements.json"
|
"exports": "./index.js"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1350,12 +1350,13 @@
|
||||||
resolved "https://registry.yarnpkg.com/@coolaj86/urequest/-/urequest-1.3.7.tgz#66a1d66378dd6534e9c8e68948bf09acf32bab77"
|
resolved "https://registry.yarnpkg.com/@coolaj86/urequest/-/urequest-1.3.7.tgz#66a1d66378dd6534e9c8e68948bf09acf32bab77"
|
||||||
integrity sha512-PPrVYra9aWvZjSCKl/x1pJ9ZpXda1652oJrPBYy5rQumJJMkmTBN3ux+sK2xAUwVvv2wnewDlaQaHLxLwSHnIA==
|
integrity sha512-PPrVYra9aWvZjSCKl/x1pJ9ZpXda1652oJrPBYy5rQumJJMkmTBN3ux+sK2xAUwVvv2wnewDlaQaHLxLwSHnIA==
|
||||||
|
|
||||||
"@custom-elements-manifest/analyzer@^0.1.7":
|
"@custom-elements-manifest/analyzer@^0.1.8":
|
||||||
version "0.1.7"
|
version "0.1.8"
|
||||||
resolved "https://registry.yarnpkg.com/@custom-elements-manifest/analyzer/-/analyzer-0.1.7.tgz#b41577dfdc20cdc046060ab86f659f91092d1a27"
|
resolved "https://registry.yarnpkg.com/@custom-elements-manifest/analyzer/-/analyzer-0.1.8.tgz#ab0dbc3b1e914e5235fc7d27b6557271bf46f636"
|
||||||
integrity sha512-SuEiCAI7J9udOhUZIpAWNk535d/GMjyggTM+rucv66Uz1DE0nmj6YnJ22apwMqESfvjGlH7qjNo6f0GukJFaTA==
|
integrity sha512-yU3uHZA21BJ6KLizTTGDMUqLIWfPXuKsu+XqDuXLNFcOd+F17e+UKePohqg7lq230W919wLceAvVKAC62WQQGQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@custom-elements-manifest/helpers" "^0.0.3"
|
"@custom-elements-manifest/helpers" "^0.0.3"
|
||||||
|
"@web/config-loader" "^0.1.3"
|
||||||
command-line-args "^5.1.1"
|
command-line-args "^5.1.1"
|
||||||
comment-parser "^0.7.6"
|
comment-parser "^0.7.6"
|
||||||
globby "^11.0.1"
|
globby "^11.0.1"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue