@nrwl/nx-plugin 13.10.0-beta.9 → 13.10.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/package.json +5 -5
- package/src/generators/e2e-project/e2e.d.ts +1 -1
- package/src/generators/executor/executor.d.ts +1 -1
- package/src/generators/generator/generator.d.ts +1 -1
- package/src/generators/migration/migration.d.ts +1 -1
- package/src/generators/plugin/plugin.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/nx-plugin",
|
|
3
|
-
"version": "13.10.0-
|
|
3
|
+
"version": "13.10.0-rc.0",
|
|
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-
|
|
31
|
-
"@nrwl/jest": "13.10.0-
|
|
32
|
-
"@nrwl/linter": "13.10.0-
|
|
33
|
-
"@nrwl/js": "13.10.0-
|
|
30
|
+
"@nrwl/devkit": "13.10.0-rc.0",
|
|
31
|
+
"@nrwl/jest": "13.10.0-rc.0",
|
|
32
|
+
"@nrwl/linter": "13.10.0-rc.0",
|
|
33
|
+
"@nrwl/js": "13.10.0-rc.0",
|
|
34
34
|
"fs-extra": "^9.1.0",
|
|
35
35
|
"rxjs": "^6.5.4",
|
|
36
36
|
"tslib": "^2.3.0"
|
|
@@ -2,4 +2,4 @@ import type { Tree } from '@nrwl/devkit';
|
|
|
2
2
|
import type { Schema } from './schema';
|
|
3
3
|
export declare function e2eProjectGenerator(host: Tree, schema: Schema): Promise<void>;
|
|
4
4
|
export default e2eProjectGenerator;
|
|
5
|
-
export declare const e2eProjectSchematic: (
|
|
5
|
+
export declare const e2eProjectSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
|
|
@@ -2,4 +2,4 @@ import type { Tree } from '@nrwl/devkit';
|
|
|
2
2
|
import type { Schema } from './schema';
|
|
3
3
|
export declare function executorGenerator(host: Tree, schema: Schema): Promise<void>;
|
|
4
4
|
export default executorGenerator;
|
|
5
|
-
export declare const executorSchematic: (
|
|
5
|
+
export declare const executorSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
|
|
@@ -2,4 +2,4 @@ import type { Tree } from '@nrwl/devkit';
|
|
|
2
2
|
import type { Schema } from './schema';
|
|
3
3
|
export declare function generatorGenerator(host: Tree, schema: Schema): Promise<void>;
|
|
4
4
|
export default generatorGenerator;
|
|
5
|
-
export declare const generatorSchematic: (
|
|
5
|
+
export declare const generatorSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
|
|
@@ -2,4 +2,4 @@ import type { Tree } from '@nrwl/devkit';
|
|
|
2
2
|
import type { Schema } from './schema';
|
|
3
3
|
export declare function migrationGenerator(host: Tree, schema: Schema): Promise<void>;
|
|
4
4
|
export default migrationGenerator;
|
|
5
|
-
export declare const migrationSchematic: (
|
|
5
|
+
export declare const migrationSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
|
|
@@ -3,4 +3,4 @@ import { GeneratorCallback } from '@nrwl/devkit';
|
|
|
3
3
|
import type { Schema } from './schema';
|
|
4
4
|
export declare function pluginGenerator(host: Tree, schema: Schema): Promise<GeneratorCallback>;
|
|
5
5
|
export default pluginGenerator;
|
|
6
|
-
export declare const pluginSchematic: (
|
|
6
|
+
export declare const pluginSchematic: (generatorOptions: Schema) => (tree: any, context: any) => Promise<any>;
|
package/src/utils/versions.js
CHANGED