@stencil/core 4.41.3 → 4.42.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 +3 -2
- package/cli/index.js +3 -2
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +527 -127
- 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/app-globals/package.json +1 -1
- package/internal/client/index.js +25 -2
- package/internal/client/package.json +1 -1
- package/internal/client/patch-browser.js +1 -1
- package/internal/hydrate/index.js +25 -2
- package/internal/hydrate/package.json +1 -1
- package/internal/hydrate/runner.js +1 -1
- package/internal/package.json +1 -1
- package/internal/stencil-ext-modules.d.ts +1 -1
- package/internal/stencil-private.d.ts +32 -0
- package/internal/stencil-public-compiler.d.ts +17 -1
- package/internal/stencil-public-docs.d.ts +26 -0
- package/internal/stencil-public-runtime.d.ts +24 -1
- package/internal/testing/index.js +24 -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 +1 -1
- package/screenshot/index.js +1 -1
- package/screenshot/package.json +1 -1
- package/screenshot/pixel-match.js +1 -1
- package/sys/node/index.js +27 -27
- package/sys/node/package.json +1 -1
- package/sys/node/worker.js +1 -1
- package/testing/index.js +20 -1
- 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.42.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
"use strict";
|
|
5
5
|
var __create = Object.create;
|
|
@@ -2759,6 +2759,7 @@ var DOCS_CUSTOM = "docs-custom";
|
|
|
2759
2759
|
var DOCS_JSON = "docs-json";
|
|
2760
2760
|
var DOCS_README = "docs-readme";
|
|
2761
2761
|
var DOCS_VSCODE = "docs-vscode";
|
|
2762
|
+
var DOCS_CUSTOM_ELEMENTS_MANIFEST = "docs-custom-elements-manifest";
|
|
2762
2763
|
var WWW = "www";
|
|
2763
2764
|
|
|
2764
2765
|
// src/utils/helpers.ts
|
|
@@ -4284,7 +4285,7 @@ minimatch.unescape = unescape;
|
|
|
4284
4285
|
|
|
4285
4286
|
// src/utils/output-target.ts
|
|
4286
4287
|
var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
|
|
4287
|
-
var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
|
|
4288
|
+
var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE || o.type === DOCS_CUSTOM_ELEMENTS_MANIFEST;
|
|
4288
4289
|
|
|
4289
4290
|
// src/utils/result.ts
|
|
4290
4291
|
var result_exports = {};
|
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.
|
|
2
|
+
Stencil CLI v4.42.0 | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -2753,6 +2753,7 @@ var DOCS_CUSTOM = "docs-custom";
|
|
|
2753
2753
|
var DOCS_JSON = "docs-json";
|
|
2754
2754
|
var DOCS_README = "docs-readme";
|
|
2755
2755
|
var DOCS_VSCODE = "docs-vscode";
|
|
2756
|
+
var DOCS_CUSTOM_ELEMENTS_MANIFEST = "docs-custom-elements-manifest";
|
|
2756
2757
|
var WWW = "www";
|
|
2757
2758
|
|
|
2758
2759
|
// src/utils/helpers.ts
|
|
@@ -4278,7 +4279,7 @@ minimatch.unescape = unescape;
|
|
|
4278
4279
|
|
|
4279
4280
|
// src/utils/output-target.ts
|
|
4280
4281
|
var isOutputTargetHydrate = (o) => o.type === DIST_HYDRATE_SCRIPT;
|
|
4281
|
-
var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE;
|
|
4282
|
+
var isOutputTargetDocs = (o) => o.type === DOCS_README || o.type === DOCS_JSON || o.type === DOCS_CUSTOM || o.type === DOCS_VSCODE || o.type === DOCS_CUSTOM_ELEMENTS_MANIFEST;
|
|
4282
4283
|
|
|
4283
4284
|
// src/utils/result.ts
|
|
4284
4285
|
var result_exports = {};
|
package/cli/package.json
CHANGED