@nx/node 16.5.1 → 16.6.0-beta.1
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": "16.
|
|
3
|
+
"version": "16.6.0-beta.1",
|
|
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": {
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"migrations": "./migrations.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@nrwl/node": "16.
|
|
34
|
-
"@nx/devkit": "16.
|
|
35
|
-
"@nx/jest": "16.
|
|
36
|
-
"@nx/js": "16.
|
|
37
|
-
"@nx/linter": "16.
|
|
38
|
-
"@nx/workspace": "16.
|
|
33
|
+
"@nrwl/node": "16.6.0-beta.1",
|
|
34
|
+
"@nx/devkit": "16.6.0-beta.1",
|
|
35
|
+
"@nx/jest": "16.6.0-beta.1",
|
|
36
|
+
"@nx/js": "16.6.0-beta.1",
|
|
37
|
+
"@nx/linter": "16.6.0-beta.1",
|
|
38
|
+
"@nx/workspace": "16.6.0-beta.1",
|
|
39
39
|
"tslib": "^2.3.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"types": "./index.d.ts",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "cf9f5cbe6a7ce3b916ec6505dc8488f669cbc52b"
|
|
46
46
|
}
|
|
@@ -222,7 +222,7 @@ function applicationGenerator(tree, schema) {
|
|
|
222
222
|
tasks.push(lintTask);
|
|
223
223
|
}
|
|
224
224
|
if (options.unitTestRunner === 'jest') {
|
|
225
|
-
const jestTask = yield (0, jest_1.
|
|
225
|
+
const jestTask = yield (0, jest_1.configurationGenerator)(tree, Object.assign(Object.assign({}, options), { project: options.name, setupFile: 'none', skipSerializers: true, supportTsx: options.js, testEnvironment: 'node', compiler: options.swcJest ? 'swc' : 'tsc', skipFormat: true }));
|
|
226
226
|
tasks.push(jestTask);
|
|
227
227
|
}
|
|
228
228
|
else {
|