nx 20.7.0-canary.20250326-9dd4766 → 20.7.0-canary.20250327-1a235d7

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.
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk=self.webpackChunk||[]).push([[532],{2341:()=>{}},s=>{var e;e=2341,s(s.s=e)}]);
1
+ "use strict";(self.webpackChunk=self.webpackChunk||[]).push([[532],{3968:()=>{}},s=>{var e;e=3968,s(s.s=e)}]);
Binary file
@@ -25,7 +25,7 @@ function readPluginPackageJson(pluginName, projects, paths = (0, installation_di
25
25
  const localPluginPath = (0, resolve_plugin_1.resolveLocalNxPlugin)(pluginName, projects);
26
26
  if (localPluginPath) {
27
27
  const localPluginPackageJson = path.join(localPluginPath.path, 'package.json');
28
- if ((0, transpiler_1.pluginTranspilerIsRegistered)()) {
28
+ if (!(0, transpiler_1.pluginTranspilerIsRegistered)()) {
29
29
  (0, transpiler_1.registerPluginTSTranspiler)();
30
30
  }
31
31
  return {
@@ -15,6 +15,9 @@ function isCI() {
15
15
  !!process.env.GITLAB_CI ||
16
16
  !!process.env.HEROKU_TEST_RUN_ID ||
17
17
  !!process.env.BUILD_ID ||
18
+ !!process.env.BUILD_NUMBER ||
18
19
  !!process.env.BUILD_BUILDID ||
19
- !!process.env.TEAMCITY_VERSION);
20
+ !!process.env.TEAMCITY_VERSION ||
21
+ !!process.env.JENKINS_URL ||
22
+ !!process.env.HUDSON_URL);
20
23
  }