nx 20.7.0-canary.20250325-30781f7 → 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
@@ -161,6 +161,7 @@ function getTranspiler(compilerOptions, tsConfigRaw) {
161
161
  // use NodeJs module resolution until support for TS 4.x is dropped and then
162
162
  // we can switch to Node10
163
163
  compilerOptions.moduleResolution = ts.ModuleResolutionKind.NodeJs;
164
+ compilerOptions.customConditions = null;
164
165
  compilerOptions.target = ts.ScriptTarget.ES2021;
165
166
  compilerOptions.inlineSourceMap = true;
166
167
  compilerOptions.skipLibCheck = true;
@@ -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
  }