@stencil/core 2.16.0 → 2.16.1-0
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 +30 -12
- package/cli/index.js +30 -12
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +209 -147
- package/compiler/stencil.min.js +2 -2
- package/dependencies.json +1 -1
- package/dev-server/client/index.js +1 -1
- package/dev-server/client/package.json +1 -1
- package/dev-server/connector.html +3 -3
- package/dev-server/index.js +1 -1
- package/dev-server/package.json +1 -1
- package/dev-server/server-process.js +4 -2
- package/internal/app-data/package.json +1 -1
- package/internal/client/css-shim.js +1 -1
- package/internal/client/dom.js +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/client/patch-esm.js +1 -1
- package/internal/client/shadow-css.js +1 -1
- package/internal/hydrate/index.js +3 -3
- package/internal/hydrate/package.json +1 -1
- package/internal/package.json +1 -1
- package/internal/stencil-public-compiler.d.ts +1 -0
- package/internal/testing/index.js +1 -1
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +3 -1
- package/mock-doc/index.d.ts +1 -0
- package/mock-doc/index.js +3 -1
- package/mock-doc/package.json +1 -1
- package/package.json +2 -1
- package/screenshot/index.js +2 -0
- package/screenshot/package.json +1 -1
- package/sys/node/index.js +1 -1
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +335 -331
- package/testing/package.json +1 -1
package/mock-doc/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/core",
|
|
3
|
-
"version": "2.16.0",
|
|
3
|
+
"version": "2.16.1-0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./internal/stencil-core/index.cjs",
|
|
6
6
|
"module": "./internal/stencil-core/index.js",
|
|
@@ -98,6 +98,7 @@
|
|
|
98
98
|
"dts-bundle-generator": "~5.3.0",
|
|
99
99
|
"eslint": "^8.13.0",
|
|
100
100
|
"eslint-config-prettier": "^8.5.0",
|
|
101
|
+
"eslint-plugin-jsdoc": "^39.3.1",
|
|
101
102
|
"execa": "4.1.0",
|
|
102
103
|
"exit": "^0.1.2",
|
|
103
104
|
"fast-deep-equal": "3.1.3",
|
package/screenshot/index.js
CHANGED
|
@@ -437,6 +437,8 @@ class ScreenshotConnector {
|
|
|
437
437
|
* Forward-slash paths can be used in Windows as long as they're not
|
|
438
438
|
* extended-length paths and don't contain any non-ascii characters.
|
|
439
439
|
* This was created since the path methods in Node.js outputs \\ paths on Windows.
|
|
440
|
+
* @param path the Windows-based path to convert
|
|
441
|
+
* @returns the converted path
|
|
440
442
|
*/
|
|
441
443
|
const normalizePath = (path) => {
|
|
442
444
|
if (typeof path !== 'string') {
|
package/screenshot/package.json
CHANGED
package/sys/node/index.js
CHANGED
package/sys/node/package.json
CHANGED
package/sys/node/worker.js
CHANGED