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