@stencil/core 4.23.2 → 4.24.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 +2 -5
- package/cli/index.js +2 -5
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +2427 -836
- 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 +10 -10
- package/internal/app-data/package.json +1 -1
- package/internal/client/index.js +1769 -1674
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +1781 -1671
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +21 -21
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +70 -2
- package/internal/stencil-public-compiler.d.ts +9 -11
- package/internal/testing/index.js +1759 -1662
- package/internal/testing/package.json +1 -1
- package/mock-doc/index.cjs +3 -3
- package/mock-doc/index.js +3 -3
- package/mock-doc/package.json +1 -1
- package/package.json +3 -3
- 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/glob.js +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 +28 -19
- package/testing/package.json +1 -1
package/cli/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v4.
|
|
2
|
+
Stencil CLI (CommonJS) v4.24.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2495,11 +2495,8 @@ var STRING_NUMBER_CLI_FLAGS = ["maxWorkers"];
|
|
|
2495
2495
|
var BOOLEAN_STRING_CLI_FLAGS = [
|
|
2496
2496
|
/**
|
|
2497
2497
|
* `headless` is an argument passed through to Puppeteer (which is passed to Chrome) for end-to-end testing.
|
|
2498
|
-
* Prior to Chrome v112, `headless` was treated like a boolean flag. Starting with Chrome v112, 'new' is an accepted
|
|
2499
|
-
* option to support Chrome's new headless mode. In order to support this option in Stencil, both the boolean and
|
|
2500
|
-
* string versions of the flag must be accepted.
|
|
2501
2498
|
*
|
|
2502
|
-
* {@see https://developer.chrome.com/
|
|
2499
|
+
* {@see https://developer.chrome.com/blog/chrome-headless-shell/}
|
|
2503
2500
|
*/
|
|
2504
2501
|
"headless"
|
|
2505
2502
|
];
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.24.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -2489,11 +2489,8 @@ var STRING_NUMBER_CLI_FLAGS = ["maxWorkers"];
|
|
|
2489
2489
|
var BOOLEAN_STRING_CLI_FLAGS = [
|
|
2490
2490
|
/**
|
|
2491
2491
|
* `headless` is an argument passed through to Puppeteer (which is passed to Chrome) for end-to-end testing.
|
|
2492
|
-
* Prior to Chrome v112, `headless` was treated like a boolean flag. Starting with Chrome v112, 'new' is an accepted
|
|
2493
|
-
* option to support Chrome's new headless mode. In order to support this option in Stencil, both the boolean and
|
|
2494
|
-
* string versions of the flag must be accepted.
|
|
2495
2492
|
*
|
|
2496
|
-
* {@see https://developer.chrome.com/
|
|
2493
|
+
* {@see https://developer.chrome.com/blog/chrome-headless-shell/}
|
|
2497
2494
|
*/
|
|
2498
2495
|
"headless"
|
|
2499
2496
|
];
|
package/cli/package.json
CHANGED