@stencil/core 4.0.1-dev.1688619759.e86c3d6 → 4.0.1-dev.1688706133.d9e4e1a
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 -5
- package/cli/index.cjs.map +1 -1
- package/cli/index.js +1 -5
- package/cli/index.js.map +1 -1
- package/cli/package.json +1 -1
- package/compiler/package.json +1 -1
- package/compiler/stencil.js +4 -4
- package/compiler/stencil.min.js +2 -2
- 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/client/shadow-css.js +1 -1
- package/internal/hydrate/package.json +1 -1
- package/internal/package.json +1 -1
- package/internal/stencil-private.d.ts +0 -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/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 +2 -2
- package/testing/package.json +1 -1
package/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI v4.0.1-dev.
|
|
2
|
+
Stencil CLI v4.0.1-dev.1688706133.d9e4e1a | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
import { parse, join, relative } from 'path';
|
|
5
5
|
|
|
@@ -1311,8 +1311,6 @@ const taskWatch = async (coreCompiler, config) => {
|
|
|
1311
1311
|
}
|
|
1312
1312
|
};
|
|
1313
1313
|
|
|
1314
|
-
const IS_BROWSER_ENV = typeof location !== 'undefined' && typeof navigator !== 'undefined' && typeof XMLHttpRequest !== 'undefined';
|
|
1315
|
-
|
|
1316
1314
|
const tryFn = async (fn, ...args) => {
|
|
1317
1315
|
try {
|
|
1318
1316
|
return await fn(...args);
|
|
@@ -1536,7 +1534,6 @@ const prepareData = async (coreCompiler, config, sys, duration_ms, component_cou
|
|
|
1536
1534
|
const build = coreCompiler.buildId || 'unknown';
|
|
1537
1535
|
const has_app_pwa_config = hasAppTarget(config);
|
|
1538
1536
|
const anonymizedConfig = anonymizeConfigForTelemetry(config);
|
|
1539
|
-
const is_browser_env = IS_BROWSER_ENV;
|
|
1540
1537
|
return {
|
|
1541
1538
|
arguments: config.flags.args,
|
|
1542
1539
|
build,
|
|
@@ -1545,7 +1542,6 @@ const prepareData = async (coreCompiler, config, sys, duration_ms, component_cou
|
|
|
1545
1542
|
cpu_model,
|
|
1546
1543
|
duration_ms,
|
|
1547
1544
|
has_app_pwa_config,
|
|
1548
|
-
is_browser_env,
|
|
1549
1545
|
os_name,
|
|
1550
1546
|
os_version,
|
|
1551
1547
|
packages,
|