create-nx-plugin 19.5.3 → 19.5.4
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/bin/create-nx-plugin.js +1 -2
- package/package.json +2 -2
package/bin/create-nx-plugin.js
CHANGED
|
@@ -10,7 +10,6 @@ const yargs_options_1 = require("create-nx-workspace/src/internal-utils/yargs-op
|
|
|
10
10
|
const create_nx_workspace_1 = require("create-nx-workspace");
|
|
11
11
|
const output_1 = require("create-nx-workspace/src/utils/output");
|
|
12
12
|
const show_nx_warning_1 = require("create-nx-workspace/src/utils/nx/show-nx-warning");
|
|
13
|
-
const nx_cloud_1 = require("create-nx-workspace/src/utils/nx/nx-cloud");
|
|
14
13
|
const ab_testing_1 = require("create-nx-workspace/src/utils/nx/ab-testing");
|
|
15
14
|
exports.yargsDecorator = {
|
|
16
15
|
'Options:': `${chalk.green `Options`}:`,
|
|
@@ -107,7 +106,7 @@ async function main(parsedArgs) {
|
|
|
107
106
|
],
|
|
108
107
|
});
|
|
109
108
|
if (parsedArgs.nxCloud && workspaceInfo.nxCloudInfo) {
|
|
110
|
-
|
|
109
|
+
console.log(workspaceInfo.nxCloudInfo);
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nx-plugin",
|
|
3
|
-
"version": "19.5.
|
|
3
|
+
"version": "19.5.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "This package is used to scaffold a brand-new workspace used to develop an Nx plugin, and sets up a pre-configured plugin with the specified name. The new plugin is created with a default generator, executor, and e2e app.",
|
|
6
6
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://nx.dev",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"create-nx-workspace": "19.5.
|
|
32
|
+
"create-nx-workspace": "19.5.4",
|
|
33
33
|
"chalk": "^4.1.0",
|
|
34
34
|
"enquirer": "~2.3.6",
|
|
35
35
|
"tslib": "^2.3.0",
|