@nx/nest 16.8.0-beta.3 → 16.8.0-beta.4
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": "16.8.0-beta.
|
|
3
|
+
"version": "16.8.0-beta.4",
|
|
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": {
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@nestjs/schematics": "^9.1.0",
|
|
34
|
-
"@nrwl/nest": "16.8.0-beta.
|
|
35
|
-
"@nx/devkit": "16.8.0-beta.
|
|
36
|
-
"@nx/js": "16.8.0-beta.
|
|
37
|
-
"@nx/linter": "16.8.0-beta.
|
|
38
|
-
"@nx/node": "16.8.0-beta.
|
|
34
|
+
"@nrwl/nest": "16.8.0-beta.4",
|
|
35
|
+
"@nx/devkit": "16.8.0-beta.4",
|
|
36
|
+
"@nx/js": "16.8.0-beta.4",
|
|
37
|
+
"@nx/linter": "16.8.0-beta.4",
|
|
38
|
+
"@nx/node": "16.8.0-beta.4",
|
|
39
39
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
40
40
|
"enquirer": "~2.3.6",
|
|
41
41
|
"semver": "7.5.3",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"type": "commonjs",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c9aad2dc8c2b34531cf61549bff872e68c481e4e"
|
|
49
49
|
}
|
|
@@ -46,6 +46,7 @@ function toJsLibraryGeneratorOptions(options) {
|
|
|
46
46
|
unitTestRunner: options.unitTestRunner,
|
|
47
47
|
config: options.standaloneConfig ? 'project' : 'workspace',
|
|
48
48
|
setParserOptionsProject: options.setParserOptionsProject,
|
|
49
|
+
projectNameAndRootFormat: options.projectNameAndRootFormat,
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
exports.toJsLibraryGeneratorOptions = toJsLibraryGeneratorOptions;
|
|
@@ -4,10 +4,10 @@ exports.createTreeWithNestApplication = void 0;
|
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
const testing_1 = require("@nx/devkit/testing");
|
|
6
6
|
function createTreeWithNestApplication(appName) {
|
|
7
|
-
const tree = (0, testing_1.createTreeWithEmptyWorkspace)(
|
|
7
|
+
const tree = (0, testing_1.createTreeWithEmptyWorkspace)();
|
|
8
8
|
(0, devkit_1.addProjectConfiguration)(tree, appName, {
|
|
9
|
-
root:
|
|
10
|
-
sourceRoot:
|
|
9
|
+
root: `${appName}`,
|
|
10
|
+
sourceRoot: `${appName}/src`,
|
|
11
11
|
projectType: 'application',
|
|
12
12
|
targets: {},
|
|
13
13
|
});
|