@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.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Stencil CLI (CommonJS) v4.0.1-dev.
|
|
2
|
+
Stencil CLI (CommonJS) v4.0.1-dev.1688706133.d9e4e1a | MIT Licensed | https://stenciljs.com
|
|
3
3
|
*/
|
|
4
4
|
'use strict';
|
|
5
5
|
|
|
@@ -1335,8 +1335,6 @@ const taskWatch = async (coreCompiler, config) => {
|
|
|
1335
1335
|
}
|
|
1336
1336
|
};
|
|
1337
1337
|
|
|
1338
|
-
const IS_BROWSER_ENV = typeof location !== 'undefined' && typeof navigator !== 'undefined' && typeof XMLHttpRequest !== 'undefined';
|
|
1339
|
-
|
|
1340
1338
|
const tryFn = async (fn, ...args) => {
|
|
1341
1339
|
try {
|
|
1342
1340
|
return await fn(...args);
|
|
@@ -1560,7 +1558,6 @@ const prepareData = async (coreCompiler, config, sys, duration_ms, component_cou
|
|
|
1560
1558
|
const build = coreCompiler.buildId || 'unknown';
|
|
1561
1559
|
const has_app_pwa_config = hasAppTarget(config);
|
|
1562
1560
|
const anonymizedConfig = anonymizeConfigForTelemetry(config);
|
|
1563
|
-
const is_browser_env = IS_BROWSER_ENV;
|
|
1564
1561
|
return {
|
|
1565
1562
|
arguments: config.flags.args,
|
|
1566
1563
|
build,
|
|
@@ -1569,7 +1566,6 @@ const prepareData = async (coreCompiler, config, sys, duration_ms, component_cou
|
|
|
1569
1566
|
cpu_model,
|
|
1570
1567
|
duration_ms,
|
|
1571
1568
|
has_app_pwa_config,
|
|
1572
|
-
is_browser_env,
|
|
1573
1569
|
os_name,
|
|
1574
1570
|
os_version,
|
|
1575
1571
|
packages,
|