@nx/plugin 20.2.0-rc.0 → 20.2.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 +5 -5
- package/src/generators/create-package/create-package.js +1 -1
- package/src/generators/create-package/files/e2e/__cliName__.spec.ts__tmpl__ +8 -6
- package/src/generators/e2e-project/e2e.js +1 -1
- package/src/generators/e2e-project/files/src/__pluginName__.spec.ts__tmpl__ +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/plugin",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.1",
|
|
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": {
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.0",
|
|
31
|
-
"@nx/devkit": "20.2.
|
|
32
|
-
"@nx/jest": "20.2.
|
|
33
|
-
"@nx/js": "20.2.
|
|
34
|
-
"@nx/eslint": "20.2.
|
|
31
|
+
"@nx/devkit": "20.2.1",
|
|
32
|
+
"@nx/jest": "20.2.1",
|
|
33
|
+
"@nx/js": "20.2.1",
|
|
34
|
+
"@nx/eslint": "20.2.1"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
@@ -140,7 +140,7 @@ function addE2eProject(host, options) {
|
|
|
140
140
|
(0, devkit_1.generateFiles)(host, (0, devkit_1.joinPathFragments)(__dirname, './files/e2e'), e2eProjectConfiguration.sourceRoot, {
|
|
141
141
|
pluginName: options.project,
|
|
142
142
|
cliName: options.name,
|
|
143
|
-
packageManagerCommands: (0, devkit_1.getPackageManagerCommand)(
|
|
143
|
+
packageManagerCommands: (0, devkit_1.getPackageManagerCommand)(),
|
|
144
144
|
pluginPackageName,
|
|
145
145
|
tmpl: '',
|
|
146
146
|
});
|
|
@@ -6,11 +6,13 @@ describe('<%= cliName %>', () => {
|
|
|
6
6
|
let projectDirectory: string;
|
|
7
7
|
|
|
8
8
|
afterAll(() => {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
if (projectDirectory) {
|
|
10
|
+
// Cleanup the test project
|
|
11
|
+
rmSync(projectDirectory, {
|
|
12
|
+
recursive: true,
|
|
13
|
+
force: true,
|
|
14
|
+
});
|
|
15
|
+
}
|
|
14
16
|
});
|
|
15
17
|
|
|
16
18
|
|
|
@@ -43,7 +45,7 @@ function createTestProject(extraArgs = '') {
|
|
|
43
45
|
});
|
|
44
46
|
|
|
45
47
|
execSync(
|
|
46
|
-
`<%= packageManagerCommands.
|
|
48
|
+
`<%= packageManagerCommands.dlx %> <%= cliName %>@e2e ${projectName} ${extraArgs}`,
|
|
47
49
|
{
|
|
48
50
|
cwd: dirname(projectDirectory),
|
|
49
51
|
stdio: 'inherit',
|
|
@@ -57,7 +57,7 @@ function addFiles(host, options) {
|
|
|
57
57
|
...options,
|
|
58
58
|
tmpl: '',
|
|
59
59
|
rootTsConfigPath: (0, js_1.getRelativePathToRootTsConfig)(host, options.projectRoot),
|
|
60
|
-
packageManagerCommands: (0, devkit_1.getPackageManagerCommand)(
|
|
60
|
+
packageManagerCommands: (0, devkit_1.getPackageManagerCommand)(),
|
|
61
61
|
pluginPackageName,
|
|
62
62
|
});
|
|
63
63
|
}
|
|
@@ -10,7 +10,7 @@ describe('<%= pluginName %>', () => {
|
|
|
10
10
|
|
|
11
11
|
// The plugin has been built and published to a local registry in the jest globalSetup
|
|
12
12
|
// Install the plugin built with the latest source code into the test repo
|
|
13
|
-
execSync(`<%= packageManagerCommands.
|
|
13
|
+
execSync(`<%= packageManagerCommands.addDev %> <%= pluginPackageName %>@e2e`, {
|
|
14
14
|
cwd: projectDirectory,
|
|
15
15
|
stdio: 'inherit',
|
|
16
16
|
env: process.env,
|
|
@@ -18,11 +18,13 @@ describe('<%= pluginName %>', () => {
|
|
|
18
18
|
});
|
|
19
19
|
|
|
20
20
|
afterAll(() => {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
if (projectDirectory) {
|
|
22
|
+
// Cleanup the test project
|
|
23
|
+
rmSync(projectDirectory, {
|
|
24
|
+
recursive: true,
|
|
25
|
+
force: true,
|
|
26
|
+
});
|
|
27
|
+
}
|
|
26
28
|
});
|
|
27
29
|
|
|
28
30
|
|
|
@@ -53,7 +55,7 @@ function createTestProject() {
|
|
|
53
55
|
});
|
|
54
56
|
|
|
55
57
|
execSync(
|
|
56
|
-
`<%= packageManagerCommands.
|
|
58
|
+
`<%= packageManagerCommands.dlx %> create-nx-workspace@latest ${projectName} --preset apps --nxCloud=skip --no-interactive`,
|
|
57
59
|
{
|
|
58
60
|
cwd: dirname(projectDirectory),
|
|
59
61
|
stdio: 'inherit',
|