@nrwl/nx-plugin 13.10.0-beta.4 → 13.10.0-beta.7

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 CHANGED
@@ -3,14 +3,14 @@
3
3
  "e2e": {
4
4
  "implementation": "./src/executors/e2e/compat",
5
5
  "schema": "./src/executors/e2e/schema.json",
6
- "description": "Creates and runs the e2e tests for an Nx Plugin."
6
+ "description": "Creates and runs the E2E tests for an Nx Plugin."
7
7
  }
8
8
  },
9
9
  "executors": {
10
10
  "e2e": {
11
11
  "implementation": "./src/executors/e2e/e2e.impl",
12
12
  "schema": "./src/executors/e2e/schema.json",
13
- "description": "Creates and runs the e2e tests for an Nx Plugin."
13
+ "description": "Creates and runs the E2E tests for an Nx Plugin."
14
14
  }
15
15
  }
16
16
  }
package/generators.json CHANGED
@@ -6,56 +6,56 @@
6
6
  "plugin": {
7
7
  "factory": "./src/generators/plugin/plugin",
8
8
  "schema": "./src/generators/plugin/schema.json",
9
- "description": "Create a Nx Plugin"
9
+ "description": "Create a Nx Plugin."
10
10
  },
11
11
  "e2e-project": {
12
12
  "factory": "./src/generators/e2e-project/e2e",
13
13
  "schema": "./src/generators/e2e-project/schema.json",
14
- "description": "Create a e2e application for a Nx Plugin",
14
+ "description": "Create a E2E application for a Nx Plugin.",
15
15
  "hidden": true
16
16
  },
17
17
  "migration": {
18
18
  "factory": "./src/generators/migration/migration",
19
19
  "schema": "./src/generators/migration/schema.json",
20
- "description": "Create a migration for an Nx Plugin"
20
+ "description": "Create a migration for an Nx Plugin."
21
21
  },
22
22
  "generator": {
23
23
  "factory": "./src/generators/generator/generator",
24
24
  "schema": "./src/generators/generator/schema.json",
25
- "description": "Create a generator for an Nx Plugin"
25
+ "description": "Create a generator for an Nx Plugin."
26
26
  },
27
27
  "executor": {
28
28
  "factory": "./src/generators/executor/executor",
29
29
  "schema": "./src/generators/executor/schema.json",
30
- "description": "Create a executor for an Nx Plugin"
30
+ "description": "Create a executor for an Nx Plugin."
31
31
  }
32
32
  },
33
33
  "schematics": {
34
34
  "plugin": {
35
35
  "factory": "./src/generators/plugin/plugin#pluginSchematic",
36
36
  "schema": "./src/generators/plugin/schema.json",
37
- "description": "Create a Nx Plugin"
37
+ "description": "Create a Nx Plugin."
38
38
  },
39
39
  "e2e-project": {
40
40
  "factory": "./src/generators/e2e-project/e2e#e2eProjectSchematic",
41
41
  "schema": "./src/generators/e2e-project/schema.json",
42
- "description": "Create a e2e application for a Nx Plugin",
42
+ "description": "Create a E2E application for a Nx Plugin.",
43
43
  "hidden": true
44
44
  },
45
45
  "migration": {
46
46
  "factory": "./src/generators/migration/migration#migrationSchematic",
47
47
  "schema": "./src/generators/migration/schema.json",
48
- "description": "Create a migration for an Nx Plugin"
48
+ "description": "Create a migration for an Nx Plugin."
49
49
  },
50
50
  "generator": {
51
51
  "factory": "./src/generators/generator/generator#generatorSchematic",
52
52
  "schema": "./src/generators/generator/schema.json",
53
- "description": "Create a generator for an Nx Plugin"
53
+ "description": "Create a generator for an Nx Plugin."
54
54
  },
55
55
  "executor": {
56
56
  "factory": "./src/generators/executor/executor#executorSchematic",
57
57
  "schema": "./src/generators/executor/schema.json",
58
- "description": "Create a executor for an Nx Plugin"
58
+ "description": "Create a executor for an Nx Plugin."
59
59
  }
60
60
  }
61
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/nx-plugin",
3
- "version": "13.10.0-beta.4",
3
+ "version": "13.10.0-beta.7",
4
4
  "description": "Plugin for creating plugins for Nx :)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,10 +27,10 @@
27
27
  "migrations": "./migrations.json"
28
28
  },
29
29
  "dependencies": {
30
- "@nrwl/devkit": "13.10.0-beta.4",
31
- "@nrwl/jest": "13.10.0-beta.4",
32
- "@nrwl/linter": "13.10.0-beta.4",
33
- "@nrwl/js": "13.10.0-beta.4",
30
+ "@nrwl/devkit": "13.10.0-beta.7",
31
+ "@nrwl/jest": "13.10.0-beta.7",
32
+ "@nrwl/linter": "13.10.0-beta.7",
33
+ "@nrwl/js": "13.10.0-beta.7",
34
34
  "fs-extra": "^9.1.0",
35
35
  "rxjs": "^6.5.4",
36
36
  "tslib": "^2.3.0"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "title": "Nx Plugin Playground Target",
3
- "description": "Creates a playground for a Nx Plugin",
3
+ "description": "Creates a playground for a Nx Plugin.",
4
4
  "cli": "nx",
5
5
  "type": "object",
6
6
  "properties": {
@@ -2,36 +2,37 @@
2
2
  "$schema": "http://json-schema.org/schema",
3
3
  "cli": "nx",
4
4
  "$id": "NxPluginE2E",
5
- "title": "Create an e2e app for a Nx Plugin",
5
+ "title": "Create an E2E app for a Nx Plugin",
6
+ "description": "Create an E2E app for a Nx Plugin.",
6
7
  "type": "object",
7
8
  "properties": {
8
9
  "pluginName": {
9
10
  "type": "string",
10
- "description": "the name of the plugin to be tested"
11
+ "description": "the name of the plugin to be tested."
11
12
  },
12
13
  "npmPackageName": {
13
14
  "type": "string",
14
- "description": "the name of the package that would be published to NPM"
15
+ "description": "the name of the package that would be published to NPM."
15
16
  },
16
17
  "projectDirectory": {
17
18
  "type": "string",
18
- "description": "the directory where the plugin is placed"
19
+ "description": "the directory where the plugin is placed."
19
20
  },
20
21
  "pluginOutputPath": {
21
22
  "type": "string",
22
- "description": "the output path of the plugin after it builds"
23
+ "description": "the output path of the plugin after it builds."
23
24
  },
24
25
  "jestConfig": {
25
26
  "type": "string",
26
- "description": "Jest config file"
27
+ "description": "Jest config file."
27
28
  },
28
29
  "tsSpecConfig": {
29
30
  "type": "string",
30
- "description": "Spec tsconfig file",
31
+ "description": "Spec `tsconfig` file.",
31
32
  "x-deprecated": true
32
33
  },
33
34
  "standaloneConfig": {
34
- "description": "Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json",
35
+ "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
35
36
  "type": "boolean"
36
37
  }
37
38
  },
@@ -3,11 +3,12 @@
3
3
  "cli": "nx",
4
4
  "$id": "NxPluginExecutor",
5
5
  "title": "Create a Executor for an Nx Plugin",
6
+ "description": "Create a Executor for an Nx Plugin.",
6
7
  "type": "object",
7
8
  "examples": [
8
9
  {
9
- "command": "g executor my-executor --project=my-plugin",
10
- "description": "Generate libs/my-plugin/src/executors/my-executor"
10
+ "command": "nx g executor my-executor --project=my-plugin",
11
+ "description": "Generate `libs/my-plugin/src/executors/my-executor`"
11
12
  }
12
13
  ],
13
14
  "properties": {
@@ -22,7 +23,7 @@
22
23
  },
23
24
  "name": {
24
25
  "type": "string",
25
- "description": "Executor name",
26
+ "description": "Executor name.",
26
27
  "$default": {
27
28
  "$source": "argv",
28
29
  "index": 0
@@ -31,13 +32,13 @@
31
32
  },
32
33
  "description": {
33
34
  "type": "string",
34
- "description": "Executor description",
35
+ "description": "Executor description.",
35
36
  "alias": "d"
36
37
  },
37
38
  "unitTestRunner": {
38
39
  "type": "string",
39
40
  "enum": ["jest", "none"],
40
- "description": "Test runner to use for unit tests",
41
+ "description": "Test runner to use for unit tests.",
41
42
  "default": "jest"
42
43
  }
43
44
  },
@@ -3,11 +3,12 @@
3
3
  "cli": "nx",
4
4
  "$id": "NxPluginGenerator",
5
5
  "title": "Create a Generator for an Nx Plugin",
6
+ "description": "Create a Generator for an Nx Plugin.",
6
7
  "type": "object",
7
8
  "examples": [
8
9
  {
9
- "command": "g generator my-generator --project=my-plugin",
10
- "description": "Generate libs/my-plugin/src/generators/my-generator"
10
+ "command": "nx g generator my-generator --project=my-plugin",
11
+ "description": "Generate `libs/my-plugin/src/generators/my-generator`"
11
12
  }
12
13
  ],
13
14
  "properties": {
@@ -22,7 +23,7 @@
22
23
  },
23
24
  "name": {
24
25
  "type": "string",
25
- "description": "Generator name",
26
+ "description": "Generator name.",
26
27
  "$default": {
27
28
  "$source": "argv",
28
29
  "index": 0
@@ -31,13 +32,13 @@
31
32
  },
32
33
  "description": {
33
34
  "type": "string",
34
- "description": "Generator description",
35
+ "description": "Generator description.",
35
36
  "alias": "d"
36
37
  },
37
38
  "unitTestRunner": {
38
39
  "type": "string",
39
40
  "enum": ["jest", "none"],
40
- "description": "Test runner to use for unit tests",
41
+ "description": "Test runner to use for unit tests.",
41
42
  "default": "jest"
42
43
  }
43
44
  },
@@ -3,11 +3,12 @@
3
3
  "cli": "nx",
4
4
  "$id": "NxPluginMigration",
5
5
  "title": "Create a Migration for an Nx Plugin",
6
+ "description": "Create a Migration for an Nx Plugin.",
6
7
  "type": "object",
7
8
  "examples": [
8
9
  {
9
- "command": "g migration my-migration --project=my-plugin --version=1.0.0",
10
- "description": "Generate libs/my-plugin/src/migrations/my-migration"
10
+ "command": "nx g migration my-migration --project=my-plugin --version=1.0.0",
11
+ "description": "Generate `libs/my-plugin/src/migrations/my-migration`"
11
12
  }
12
13
  ],
13
14
  "properties": {
@@ -22,7 +23,7 @@
22
23
  },
23
24
  "name": {
24
25
  "type": "string",
25
- "description": "Migration name",
26
+ "description": "Migration name.",
26
27
  "$default": {
27
28
  "$source": "argv",
28
29
  "index": 0
@@ -30,18 +31,18 @@
30
31
  },
31
32
  "description": {
32
33
  "type": "string",
33
- "description": "Migration description",
34
+ "description": "Migration description.",
34
35
  "alias": "d"
35
36
  },
36
37
  "packageVersion": {
37
38
  "type": "string",
38
- "description": "Version to use for the migration",
39
+ "description": "Version to use for the migration.",
39
40
  "alias": "v",
40
41
  "x-prompt": "What version would you like to use for the migration?"
41
42
  },
42
43
  "packageJsonUpdates": {
43
44
  "type": "boolean",
44
- "description": "Whether or not to include package.json updates",
45
+ "description": "Whether or not to include `package.json` updates.",
45
46
  "alias": "p",
46
47
  "default": false
47
48
  }
@@ -3,4 +3,4 @@
3
3
  "name": "<%= name %>",
4
4
  "version": "0.0.1",
5
5
  "generators": {}
6
- }
6
+ }
@@ -3,11 +3,12 @@
3
3
  "cli": "nx",
4
4
  "$id": "NxPluginPlugin",
5
5
  "title": "Create a Plugin for Nx",
6
+ "description": "Create a Plugin for Nx.",
6
7
  "type": "object",
7
8
  "examples": [
8
9
  {
9
10
  "command": "g plugin my-plugin --directory=plugins --importPath=@myorg/my-plugin",
10
- "description": "Generate libs/plugins/my-plugin"
11
+ "description": "Generate `libs/plugins/my-plugin`"
11
12
  }
12
13
  ],
13
14
  "properties": {
@@ -22,12 +23,12 @@
22
23
  },
23
24
  "directory": {
24
25
  "type": "string",
25
- "description": "A directory where the plugin is placed",
26
+ "description": "A directory where the plugin is placed.",
26
27
  "alias": "d"
27
28
  },
28
29
  "importPath": {
29
30
  "type": "string",
30
- "description": "How the plugin will be published, like @myorg/my-awesome-plugin. Note this must be a valid npm name"
31
+ "description": "How the plugin will be published, like `@myorg/my-awesome-plugin`. Note this must be a valid NPM name."
31
32
  },
32
33
  "linter": {
33
34
  "description": "The tool to use for running lint checks.",
@@ -38,16 +39,16 @@
38
39
  "unitTestRunner": {
39
40
  "type": "string",
40
41
  "enum": ["jest", "none"],
41
- "description": "Test runner to use for unit tests",
42
+ "description": "Test runner to use for unit tests.",
42
43
  "default": "jest"
43
44
  },
44
45
  "tags": {
45
46
  "type": "string",
46
- "description": "Add tags to the library (used for linting)",
47
+ "description": "Add tags to the library (used for linting).",
47
48
  "alias": "t"
48
49
  },
49
50
  "skipFormat": {
50
- "description": "Skip formatting files",
51
+ "description": "Skip formatting files.",
51
52
  "type": "boolean",
52
53
  "default": false
53
54
  },
@@ -57,19 +58,19 @@
57
58
  "description": "Do not update tsconfig.json for development experience."
58
59
  },
59
60
  "standaloneConfig": {
60
- "description": "Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json",
61
+ "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
61
62
  "type": "boolean"
62
63
  },
63
64
  "setParserOptionsProject": {
64
65
  "type": "boolean",
65
- "description": "Whether or not to configure the ESLint \"parserOptions.project\" option. We do not do this by default for lint performance reasons.",
66
+ "description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
66
67
  "default": false
67
68
  },
68
69
  "compiler": {
69
70
  "type": "string",
70
71
  "enum": ["tsc", "swc"],
71
72
  "default": "tsc",
72
- "description": "The compiler used by the build and test targets"
73
+ "description": "The compiler used by the build and test targets."
73
74
  }
74
75
  },
75
76
  "required": ["name"],
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.nxVersion = void 0;
4
- exports.nxVersion = '13.10.0-beta.4';
4
+ exports.nxVersion = '13.10.0-beta.7';
5
5
  //# sourceMappingURL=versions.js.map