@nx/nest 22.3.0-canary.20251211-205daee → 22.3.0-canary.20251215-e864b6a
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/nest",
|
|
3
|
-
"version": "22.3.0-canary.
|
|
3
|
+
"version": "22.3.0-canary.20251215-e864b6a",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Nest contains executors and generators for allowing your workspace to create powerful Nest best in class APIs.",
|
|
6
6
|
"repository": {
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@nestjs/schematics": "^11.0.0",
|
|
35
|
-
"@nx/devkit": "22.3.0-canary.
|
|
36
|
-
"@nx/js": "22.3.0-canary.
|
|
37
|
-
"@nx/eslint": "22.3.0-canary.
|
|
38
|
-
"@nx/node": "22.3.0-canary.
|
|
35
|
+
"@nx/devkit": "22.3.0-canary.20251215-e864b6a",
|
|
36
|
+
"@nx/js": "22.3.0-canary.20251215-e864b6a",
|
|
37
|
+
"@nx/eslint": "22.3.0-canary.20251215-e864b6a",
|
|
38
|
+
"@nx/node": "22.3.0-canary.20251215-e864b6a",
|
|
39
39
|
"tslib": "^2.3.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-project.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nest/src/generators/library/lib/add-project.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAKvC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEnD,wBAAgB,UAAU,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"add-project.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nest/src/generators/library/lib/add-project.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAKvC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEnD,wBAAgB,UAAU,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,iBAAiB,GAAG,IAAI,CA0BvE"}
|
|
@@ -6,6 +6,12 @@ function addProject(tree, options) {
|
|
|
6
6
|
if (!options.publishable && !options.buildable) {
|
|
7
7
|
return;
|
|
8
8
|
}
|
|
9
|
+
// For TS solution setup, the build target is inferred by @nx/js/typescript plugin.
|
|
10
|
+
// The @nx/js:library generator already handles setting up the correct configuration.
|
|
11
|
+
if (options.isUsingTsSolutionsConfig) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
// For non-TS solution setup, add the build target with the correct output path
|
|
9
15
|
const project = (0, devkit_1.readProjectConfiguration)(tree, options.projectName);
|
|
10
16
|
project.targets ??= {};
|
|
11
17
|
project.targets.build = {
|