create-nx-plugin 22.2.2 → 22.3.0-canary.20251211-205daee
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 +5 -11
- package/package.json +2 -2
package/bin/create-nx-plugin.js
CHANGED
|
@@ -99,14 +99,10 @@ async function main(parsedArgs) {
|
|
|
99
99
|
nxVersion,
|
|
100
100
|
command: 'create-nx-plugin',
|
|
101
101
|
useCloud: parsedArgs.nxCloud !== 'skip',
|
|
102
|
-
meta:
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
nxCloudArg: parsedArgs.nxCloud ?? '',
|
|
107
|
-
nxCloudArgRaw: rawArgs.nxCloud ?? '',
|
|
108
|
-
pushedToVcs: '',
|
|
109
|
-
},
|
|
102
|
+
meta: [
|
|
103
|
+
ab_testing_1.messages.codeOfSelectedPromptMessage('setupCI'),
|
|
104
|
+
ab_testing_1.messages.codeOfSelectedPromptMessage('setupNxCloud'),
|
|
105
|
+
],
|
|
110
106
|
});
|
|
111
107
|
if (parsedArgs.nxCloud && workspaceInfo.nxCloudInfo) {
|
|
112
108
|
console.log(workspaceInfo.nxCloudInfo);
|
|
@@ -124,9 +120,7 @@ async function normalizeArgsMiddleware(argv) {
|
|
|
124
120
|
await (0, ab_testing_1.recordStat)({
|
|
125
121
|
nxVersion,
|
|
126
122
|
command: 'create-nx-plugin',
|
|
127
|
-
meta:
|
|
128
|
-
type: 'start',
|
|
129
|
-
},
|
|
123
|
+
meta: ['start'],
|
|
130
124
|
useCloud: argv.nxCloud !== 'skip',
|
|
131
125
|
});
|
|
132
126
|
const pluginName = await determinePluginName(argv);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nx-plugin",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.3.0-canary.20251211-205daee",
|
|
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": "22.
|
|
32
|
+
"create-nx-workspace": "22.3.0-canary.20251211-205daee",
|
|
33
33
|
"picocolors": "^1.1.0",
|
|
34
34
|
"enquirer": "~2.3.6",
|
|
35
35
|
"tslib": "^2.3.0",
|