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.
- package/package.json +11 -11
- package/src/command-line/init/init-v1.js +1 -1
- package/src/command-line/init/init-v2.js +1 -1
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/plugins/js/utils/register.js +1 -0
- package/src/project-graph/plugins/in-process-loader.js +1 -1
- package/src/utils/is-ci.js +4 -1
package/src/core/graph/styles.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[532],{
|
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 {
|
package/src/utils/is-ci.js
CHANGED
@@ -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
|
}
|