@nx/plugin 17.1.0-beta.0 → 17.1.0-beta.3
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/generators.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"preset": {
|
|
42
42
|
"factory": "./src/generators/preset/generator",
|
|
43
43
|
"schema": "./src/generators/preset/schema.json",
|
|
44
|
-
"description": "Initializes a workspace with an nx-plugin inside of it. Use as: `create-nx-workspace --preset @
|
|
44
|
+
"description": "Initializes a workspace with an nx-plugin inside of it. Use as: `create-nx-workspace --preset @nx/plugin`.",
|
|
45
45
|
"hidden": true,
|
|
46
46
|
"x-use-standalone-layout": true
|
|
47
47
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/plugin",
|
|
3
|
-
"version": "17.1.0-beta.
|
|
3
|
+
"version": "17.1.0-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/nrwl/nx.git",
|
|
9
|
-
"directory": "packages/
|
|
9
|
+
"directory": "packages/plugin"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"Monorepo",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
32
32
|
"fs-extra": "^11.1.0",
|
|
33
33
|
"tslib": "^2.3.0",
|
|
34
|
-
"@nx/devkit": "17.1.0-beta.
|
|
35
|
-
"@nx/jest": "17.1.0-beta.
|
|
36
|
-
"@nx/js": "17.1.0-beta.
|
|
37
|
-
"@nx/eslint": "17.1.0-beta.
|
|
38
|
-
"@nrwl/nx-plugin": "17.1.0-beta.
|
|
34
|
+
"@nx/devkit": "17.1.0-beta.3",
|
|
35
|
+
"@nx/jest": "17.1.0-beta.3",
|
|
36
|
+
"@nx/js": "17.1.0-beta.3",
|
|
37
|
+
"@nx/eslint": "17.1.0-beta.3",
|
|
38
|
+
"@nrwl/nx-plugin": "17.1.0-beta.3"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
@@ -66,7 +66,7 @@ async function addJest(host, options) {
|
|
|
66
66
|
(0, devkit_1.addProjectConfiguration)(host, options.projectName, {
|
|
67
67
|
root: options.projectRoot,
|
|
68
68
|
projectType: 'application',
|
|
69
|
-
sourceRoot: `${options.projectRoot}/
|
|
69
|
+
sourceRoot: `${options.projectRoot}/src`,
|
|
70
70
|
targets: {},
|
|
71
71
|
implicitDependencies: [options.pluginName],
|
|
72
72
|
});
|
|
@@ -89,7 +89,6 @@ async function addJest(host, options) {
|
|
|
89
89
|
...testTarget.options,
|
|
90
90
|
runInBand: true,
|
|
91
91
|
},
|
|
92
|
-
configurations: testTarget.configurations,
|
|
93
92
|
};
|
|
94
93
|
// remove the jest build target
|
|
95
94
|
delete project.targets.test;
|
|
File without changes
|