@stencil/core 4.15.0-dev.1713157312.3964a93 → 4.16.0-dev.1713194811.e1f6157
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 +3 -1
- package/cli/index.js +2 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +560 -561
- 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 +2 -2
- 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 +3 -3
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.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 +16 -7
- 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.16.0-dev.1713194811.e1f6157 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -33,6 +33,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
33
33
|
// src/cli/index.ts
|
|
34
34
|
var cli_exports = {};
|
|
35
35
|
__export(cli_exports, {
|
|
36
|
+
BOOLEAN_CLI_FLAGS: () => BOOLEAN_CLI_FLAGS,
|
|
36
37
|
parseFlags: () => parseFlags,
|
|
37
38
|
run: () => run,
|
|
38
39
|
runTask: () => runTask
|
|
@@ -1751,6 +1752,7 @@ var runTask = async (coreCompiler, config, task, sys) => {
|
|
|
1751
1752
|
};
|
|
1752
1753
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1753
1754
|
0 && (module.exports = {
|
|
1755
|
+
BOOLEAN_CLI_FLAGS,
|
|
1754
1756
|
parseFlags,
|
|
1755
1757
|
run,
|
|
1756
1758
|
runTask
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.16.0-dev.1713194811.e1f6157 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
@@ -1718,6 +1718,7 @@ var runTask = async (coreCompiler, config, task, sys) => {
|
|
|
1718
1718
|
}
|
|
1719
1719
|
};
|
|
1720
1720
|
export {
|
|
1721
|
+
BOOLEAN_CLI_FLAGS,
|
|
1721
1722
|
parseFlags,
|
|
1722
1723
|
run,
|
|
1723
1724
|
runTask
|
package/cli/package.json
CHANGED