@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.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Stencil CLI v4.0.1-dev.1688619759.e86c3d6 | MIT Licensed | https://stenciljs.com
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,