@nx/node 21.4.0-canary.20250730-8ef7d0e → 21.4.0-canary.20250731-b9bfeeb
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
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/node",
|
3
|
-
"version": "21.4.0-canary.
|
3
|
+
"version": "21.4.0-canary.20250731-b9bfeeb",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Node Plugin for Nx contains generators to manage Node applications within an Nx workspace.",
|
6
6
|
"repository": {
|
@@ -32,15 +32,15 @@
|
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
34
|
"tslib": "^2.3.0",
|
35
|
-
"@nx/devkit": "21.4.0-canary.
|
36
|
-
"@nx/jest": "21.4.0-canary.
|
37
|
-
"@nx/js": "21.4.0-canary.
|
38
|
-
"@nx/eslint": "21.4.0-canary.
|
35
|
+
"@nx/devkit": "21.4.0-canary.20250731-b9bfeeb",
|
36
|
+
"@nx/jest": "21.4.0-canary.20250731-b9bfeeb",
|
37
|
+
"@nx/js": "21.4.0-canary.20250731-b9bfeeb",
|
38
|
+
"@nx/eslint": "21.4.0-canary.20250731-b9bfeeb",
|
39
39
|
"tcp-port-used": "^1.0.2",
|
40
40
|
"kill-port": "^1.6.1"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
43
|
-
"nx": "21.4.0-canary.
|
43
|
+
"nx": "21.4.0-canary.20250731-b9bfeeb"
|
44
44
|
},
|
45
45
|
"publishConfig": {
|
46
46
|
"access": "public"
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"create-targets.d.ts","sourceRoot":"","sources":["../../../../../../../packages/node/src/generators/application/lib/create-targets.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,oBAAoB,EACpB,IAAI,EACJ,mBAAmB,EACpB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,mBAAmB,CA+BrB;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,mBAAmB,CAqCrB;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,gBAAgB,GAAG,mBAAmB,CAuB7E;AAED,wBAAgB,yBAAyB,IAAI,mBAAmB,CAa/D;AAED,wBAAgB,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG;IACpD,KAAK,EAAE,mBAAmB,CAAC;IAC3B,gBAAgB,EAAE,mBAAmB,CAAC;IACtC,wBAAwB,EAAE,mBAAmB,CAAC;CAC/C,
|
1
|
+
{"version":3,"file":"create-targets.d.ts","sourceRoot":"","sources":["../../../../../../../packages/node/src/generators/application/lib/create-targets.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,oBAAoB,EACpB,IAAI,EACJ,mBAAmB,EACpB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,mBAAmB,CA+BrB;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,EAC7B,OAAO,EAAE,gBAAgB,GACxB,mBAAmB,CAqCrB;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,gBAAgB,GAAG,mBAAmB,CAuB7E;AAED,wBAAgB,yBAAyB,IAAI,mBAAmB,CAa/D;AAED,wBAAgB,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG;IACpD,KAAK,EAAE,mBAAmB,CAAC;IAC3B,gBAAgB,EAAE,mBAAmB,CAAC;IACtC,wBAAwB,EAAE,mBAAmB,CAAC;CAC/C,CAwBA"}
|
@@ -109,6 +109,7 @@ function getNestWebpackBuildConfig() {
|
|
109
109
|
function getPruneTargets(buildTarget) {
|
110
110
|
return {
|
111
111
|
'prune-lockfile': {
|
112
|
+
dependsOn: ['build'],
|
112
113
|
cache: true,
|
113
114
|
executor: '@nx/js:prune-lockfile',
|
114
115
|
options: {
|
@@ -116,6 +117,7 @@ function getPruneTargets(buildTarget) {
|
|
116
117
|
},
|
117
118
|
},
|
118
119
|
'copy-workspace-modules': {
|
120
|
+
dependsOn: ['build'],
|
119
121
|
cache: true,
|
120
122
|
executor: '@nx/js:copy-workspace-modules',
|
121
123
|
options: {
|