@stencil/core 4.18.2-dev.1716872498.9e823d6 → 4.18.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/index.cjs +1 -1
- package/cli/index.js +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +828 -662
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +2 -2
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +52 -40
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +1 -1
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +1 -1
- package/internal/package.json +1 -1
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +1 -1
- package/mock-doc/index.js +1 -1
- package/mock-doc/package.json +1 -1
- package/package.json +11 -14
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/autoprefixer.js +2 -2
- package/sys/node/index.js +1 -1
- package/sys/node/node-fetch.js +10 -2
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +1 -1
- package/testing/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./internal/stencil-core/index.cjs",
|
|
6
6
|
"module": "./internal/stencil-core/index.js",
|
|
@@ -23,28 +23,26 @@
|
|
|
23
23
|
"testing/"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"build": "npm run clean && npm run tsc.
|
|
26
|
+
"build": "npm run clean && npm run tsc.prod && npm run ts scripts/index.ts -- --prod --ci",
|
|
27
27
|
"build.watch": "npm run build -- --watch",
|
|
28
|
-
"build.updateSelectorEngine": "
|
|
29
|
-
"clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean
|
|
30
|
-
"clean.scripts": "rm -rf scripts/build",
|
|
28
|
+
"build.updateSelectorEngine": "npm run ts scripts/updateSelectorEngine.ts",
|
|
29
|
+
"clean": "rm -rf build/ cli/ compiler/ dev-server/ internal/ mock-doc/ sys/ testing/ && npm run clean:scripts && npm run clean.screenshots",
|
|
31
30
|
"clean.screenshots": "rm -rf test/end-to-end/screenshot/builds test/end-to-end/screenshot/images",
|
|
31
|
+
"clean:scripts": "rm -rf scripts/build",
|
|
32
32
|
"lint": "eslint 'bin/*' 'scripts/*.ts' 'scripts/**/*.ts' 'src/*.ts' 'src/**/*.ts' 'src/**/*.tsx' 'test/wdio/**/*.tsx'",
|
|
33
33
|
"install.jest": "bash ./src/testing/jest/install-dependencies.sh",
|
|
34
34
|
"prettier": "npm run prettier.base -- --write",
|
|
35
35
|
"prettier.base": "prettier --cache \"./({bin,scripts,src,test}/**/*.{ts,tsx,js,jsx})|bin/stencil|.github/(**/)?*.(yml|yaml)|*.js\"",
|
|
36
36
|
"prettier.dry-run": "npm run prettier.base -- --list-different",
|
|
37
|
-
"release.ci.prepare": "npm run
|
|
38
|
-
"release.ci": "
|
|
39
|
-
"rollup.prod.ci": "rollup --config --config-prod --config-ci",
|
|
40
|
-
"rollup.watch": "rollup --watch --config",
|
|
37
|
+
"release.ci.prepare": "npm run ts scripts/index.ts -- --release --ci-prepare",
|
|
38
|
+
"release.ci": "NODE_OPTIONS=--max-old-space-size=4096 npm run ts scripts/index.ts -- --release --ci-publish",
|
|
41
39
|
"spellcheck": "npm run spellcheck.code && npm run spellcheck.markdown",
|
|
42
40
|
"spellcheck.code": "cspell --config cspell-code.json --no-progress \"src/**/*.ts\" \"src/**/*.tsx\" \"scripts/**/*.ts\"",
|
|
43
41
|
"spellcheck.markdown": "cspell --config cspell-markdown.json --no-progress \"*.md\" \"**/*.md\"",
|
|
44
42
|
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage",
|
|
45
43
|
"test.analysis": "cd test && npm run analysis.build-and-analyze",
|
|
46
44
|
"test.bundlers": "cd test && npm run bundlers",
|
|
47
|
-
"test.dist": "
|
|
45
|
+
"test.dist": "npm run ts scripts/index.ts -- --validate-build",
|
|
48
46
|
"test.end-to-end": "cd test/end-to-end && npm ci && npm test && npm run test.dist",
|
|
49
47
|
"test.jest": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
|
|
50
48
|
"test.wdio": "cd test/wdio && npm ci && npm run test",
|
|
@@ -54,10 +52,8 @@
|
|
|
54
52
|
"test.docs-build": "cd test && npm run build.docs-json && npm run build.docs-readme",
|
|
55
53
|
"test.watch": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch",
|
|
56
54
|
"test.watch-all": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watchAll --coverage",
|
|
57
|
-
"tsc": "tsc --incremental",
|
|
58
55
|
"tsc.prod": "tsc",
|
|
59
|
-
"
|
|
60
|
-
"tsc.watch": "tsc --incremental --watch"
|
|
56
|
+
"ts": "tsc --noEmit --project scripts/tsconfig.json && tsx"
|
|
61
57
|
},
|
|
62
58
|
"devDependencies": {
|
|
63
59
|
"@ionic/prettier-config": "^4.0.0",
|
|
@@ -84,7 +80,7 @@
|
|
|
84
80
|
"@yarnpkg/lockfile": "^1.1.0",
|
|
85
81
|
"ansi-colors": "4.1.3",
|
|
86
82
|
"autoprefixer": "10.4.19",
|
|
87
|
-
"conventional-changelog-cli": "^
|
|
83
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
88
84
|
"cspell": "^8.0.0",
|
|
89
85
|
"dts-bundle-generator": "~9.5.0",
|
|
90
86
|
"esbuild": "^0.21.0",
|
|
@@ -121,6 +117,7 @@
|
|
|
121
117
|
"rollup": "2.56.3",
|
|
122
118
|
"semver": "^7.3.7",
|
|
123
119
|
"terser": "5.31.0",
|
|
120
|
+
"tsx": "^4.10.3",
|
|
124
121
|
"typescript": "~5.4.0",
|
|
125
122
|
"webpack": "^5.75.0",
|
|
126
123
|
"ws": "8.17.0"
|
package/screenshot/index.js
CHANGED
package/screenshot/package.json
CHANGED