@nx/plugin 17.3.0 → 17.3.2
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/executors.json +1 -1
- package/package.json +6 -6
- package/src/executors/e2e/e2e.impl.js +2 -2
- package/src/generators/create-package/schema.json +1 -1
- package/src/generators/e2e-project/schema.json +1 -1
- package/src/generators/executor/files/executor/schema.json.template +1 -1
- package/src/generators/executor/schema.d.ts +1 -1
- package/src/generators/executor/schema.json +2 -2
- package/src/generators/generator/files/generator/schema.json.template +1 -1
- package/src/generators/generator/schema.d.ts +1 -1
- package/src/generators/generator/schema.json +2 -2
- package/src/generators/lint-checks/schema.json +1 -1
- package/src/generators/migration/schema.d.ts +1 -1
- package/src/generators/migration/schema.json +2 -2
- package/src/generators/plugin/schema.json +1 -1
- package/src/generators/preset/schema.json +1 -1
package/executors.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"implementation": "./src/executors/e2e/e2e.impl",
|
|
5
5
|
"schema": "./src/executors/e2e/schema.json",
|
|
6
6
|
"description": "Creates and runs the E2E tests for an Nx Plugin.",
|
|
7
|
-
"x-deprecated": "@nx/plugin:e2e is deprecated and will be removed in Nx
|
|
7
|
+
"x-deprecated": "@nx/plugin:e2e is deprecated and will be removed in Nx v19. Use @nx/jest:jest instead."
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/plugin",
|
|
3
|
-
"version": "17.3.
|
|
3
|
+
"version": "17.3.2",
|
|
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": {
|
|
@@ -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.3.
|
|
35
|
-
"@nx/jest": "17.3.
|
|
36
|
-
"@nx/js": "17.3.
|
|
37
|
-
"@nx/eslint": "17.3.
|
|
38
|
-
"@nrwl/nx-plugin": "17.3.
|
|
34
|
+
"@nx/devkit": "17.3.2",
|
|
35
|
+
"@nx/jest": "17.3.2",
|
|
36
|
+
"@nx/js": "17.3.2",
|
|
37
|
+
"@nx/eslint": "17.3.2",
|
|
38
|
+
"@nrwl/nx-plugin": "17.3.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
@@ -3,11 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.nxPluginE2EExecutor = void 0;
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
const jest_impl_1 = require("@nx/jest/src/executors/jest/jest.impl");
|
|
6
|
-
// TODO(
|
|
6
|
+
// TODO(v19): remove this
|
|
7
7
|
async function* nxPluginE2EExecutor(options, context) {
|
|
8
8
|
const { target, ...jestOptions } = options;
|
|
9
9
|
devkit_1.output.warn({
|
|
10
|
-
title: `"@nx/plugin:e2e" is deprecated and will be removed in Nx
|
|
10
|
+
title: `"@nx/plugin:e2e" is deprecated and will be removed in Nx 19`,
|
|
11
11
|
bodyLines: [
|
|
12
12
|
'Use the "@nx/jest:jest" executor instead and set the following:',
|
|
13
13
|
`"dependsOn": ["${target}"]`,
|
|
@@ -11,7 +11,7 @@ export interface Schema {
|
|
|
11
11
|
skipFormat?: boolean;
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx
|
|
14
|
+
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx v19.
|
|
15
15
|
*/
|
|
16
16
|
project?: string;
|
|
17
17
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
3
|
"cli": "nx",
|
|
4
4
|
"$id": "NxPluginExecutor",
|
|
5
5
|
"title": "Create an Executor for an Nx Plugin",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"$default": {
|
|
63
63
|
"$source": "projectName"
|
|
64
64
|
},
|
|
65
|
-
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx
|
|
65
|
+
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx v19."
|
|
66
66
|
},
|
|
67
67
|
"skipFormat": {
|
|
68
68
|
"type": "boolean",
|
|
@@ -10,7 +10,7 @@ export interface Schema {
|
|
|
10
10
|
nameAndDirectoryFormat?: NameAndDirectoryFormat;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx
|
|
13
|
+
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx v19.
|
|
14
14
|
*/
|
|
15
15
|
project?: string;
|
|
16
16
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
3
|
"cli": "nx",
|
|
4
4
|
"$id": "NxPluginGenerator",
|
|
5
5
|
"title": "Create a Generator for an Nx Plugin",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"$default": {
|
|
52
52
|
"$source": "projectName"
|
|
53
53
|
},
|
|
54
|
-
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx
|
|
54
|
+
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx v19."
|
|
55
55
|
},
|
|
56
56
|
"skipFormat": {
|
|
57
57
|
"type": "boolean",
|
|
@@ -10,7 +10,7 @@ export interface Schema {
|
|
|
10
10
|
nameAndDirectoryFormat?: NameAndDirectoryFormat;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx
|
|
13
|
+
* @deprecated Provide the `directory` option instead. The project will be determined from the directory provided. It will be removed in Nx v19.
|
|
14
14
|
*/
|
|
15
15
|
project?: string;
|
|
16
16
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
3
|
"cli": "nx",
|
|
4
4
|
"$id": "NxPluginMigration",
|
|
5
5
|
"title": "Create a Migration for an Nx Plugin",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"$default": {
|
|
45
45
|
"$source": "projectName"
|
|
46
46
|
},
|
|
47
|
-
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx
|
|
47
|
+
"x-deprecated": "Provide the `directory` option instead and use the `as-provided` format. The project will be determined from the directory provided. It will be removed in Nx v19."
|
|
48
48
|
},
|
|
49
49
|
"packageJsonUpdates": {
|
|
50
50
|
"type": "boolean",
|