@nrwl/nx-plugin 16.0.0-beta.4 → 16.0.0-beta.5
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 +4 -4
- package/generators.d.ts +1 -1
- package/generators.js +1 -1
- package/generators.js.map +1 -1
- package/generators.json +1 -1
- package/package.json +4 -4
- package/testing.d.ts +1 -1
- package/testing.js +1 -1
- package/testing.js.map +1 -1
package/executors.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"builders": {
|
|
3
3
|
"e2e": {
|
|
4
|
-
"implementation": "@nx/
|
|
5
|
-
"schema": "@nx/
|
|
4
|
+
"implementation": "@nx/plugin/src/executors/e2e/compat",
|
|
5
|
+
"schema": "@nx/plugin/src/executors/e2e/schema.json",
|
|
6
6
|
"description": "Creates and runs the E2E tests for an Nx Plugin."
|
|
7
7
|
}
|
|
8
8
|
},
|
|
9
9
|
"executors": {
|
|
10
10
|
"e2e": {
|
|
11
|
-
"implementation": "@nx/
|
|
12
|
-
"schema": "@nx/
|
|
11
|
+
"implementation": "@nx/plugin/src/executors/e2e/e2e.impl",
|
|
12
|
+
"schema": "@nx/plugin/src/executors/e2e/schema.json",
|
|
13
13
|
"description": "Creates and runs the E2E tests for an Nx Plugin."
|
|
14
14
|
}
|
|
15
15
|
}
|
package/generators.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '@nx/
|
|
1
|
+
export * from '@nx/plugin/generators';
|
package/generators.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("@nx/
|
|
4
|
+
tslib_1.__exportStar(require("@nx/plugin/generators"), exports);
|
|
5
5
|
//# sourceMappingURL=generators.js.map
|
package/generators.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generators.js","sourceRoot":"","sources":["../../../packages-legacy/nx-plugin/generators.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"generators.js","sourceRoot":"","sources":["../../../packages-legacy/nx-plugin/generators.ts"],"names":[],"mappings":";;;AAAA,gEAAsC"}
|
package/generators.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/nx-plugin",
|
|
3
|
-
"version": "16.0.0-beta.
|
|
3
|
+
"version": "16.0.0-beta.5",
|
|
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": {
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"schematics": "./generators.json",
|
|
25
25
|
"builders": "./executors.json",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nx/
|
|
27
|
+
"@nx/plugin": "16.0.0-beta.5"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"nx-migrations": {
|
|
33
|
-
"migrations": "@nx/
|
|
33
|
+
"migrations": "@nx/plugin/migrations.json"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "04fed26279d04c2b02663df5872c6857eb7914bf"
|
|
36
36
|
}
|
package/testing.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '@nx/
|
|
1
|
+
export * from '@nx/plugin/testing';
|
package/testing.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("@nx/
|
|
4
|
+
tslib_1.__exportStar(require("@nx/plugin/testing"), exports);
|
|
5
5
|
//# sourceMappingURL=testing.js.map
|
package/testing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testing.js","sourceRoot":"","sources":["../../../packages-legacy/nx-plugin/testing.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"testing.js","sourceRoot":"","sources":["../../../packages-legacy/nx-plugin/testing.ts"],"names":[],"mappings":";;;AAAA,6DAAmC"}
|