@nx/plugin 17.0.0-beta.8 → 17.0.0-rc.0

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
@@ -19,12 +19,12 @@
19
19
  "description": "Create a E2E application for a Nx Plugin."
20
20
  },
21
21
  "migration": {
22
- "factory": "./src/generators/migration/migration",
22
+ "factory": "./src/generators/migration/migration#migrationGeneratorInternal",
23
23
  "schema": "./src/generators/migration/schema.json",
24
24
  "description": "Create a migration for an Nx Plugin."
25
25
  },
26
26
  "generator": {
27
- "factory": "./src/generators/generator/generator",
27
+ "factory": "./src/generators/generator/generator#generatorGeneratorInternal",
28
28
  "schema": "./src/generators/generator/schema.json",
29
29
  "description": "Create a generator for an Nx Plugin."
30
30
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/plugin",
3
- "version": "17.0.0-beta.8",
3
+ "version": "17.0.0-rc.0",
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.0.0-beta.8",
35
- "@nx/jest": "17.0.0-beta.8",
36
- "@nx/js": "17.0.0-beta.8",
37
- "@nx/eslint": "17.0.0-beta.8",
38
- "@nrwl/nx-plugin": "17.0.0-beta.8"
34
+ "@nx/devkit": "17.0.0-rc.0",
35
+ "@nx/jest": "17.0.0-rc.0",
36
+ "@nx/js": "17.0.0-rc.0",
37
+ "@nx/eslint": "17.0.0-rc.0",
38
+ "@nrwl/nx-plugin": "17.0.0-rc.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -31,7 +31,6 @@
31
31
  "description": {
32
32
  "type": "string",
33
33
  "description": "Generator description.",
34
- "alias": "d",
35
34
  "x-priority": "important"
36
35
  },
37
36
  "unitTestRunner": {