@deepstorm/cli 0.5.0 → 0.6.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/dist/cli.js +7 -0
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -9382,6 +9382,12 @@ function registerUpdateCommand(program2) {
|
|
|
9382
9382
|
});
|
|
9383
9383
|
}
|
|
9384
9384
|
|
|
9385
|
+
// src/commands/pilot.ts
|
|
9386
|
+
var import_pilot = require("@deepstorm/pilot");
|
|
9387
|
+
function registerPilotCommands(program2) {
|
|
9388
|
+
(0, import_pilot.registerPilotCommands)(program2);
|
|
9389
|
+
}
|
|
9390
|
+
|
|
9385
9391
|
// src/commands/doctor.ts
|
|
9386
9392
|
var fs23 = __toESM(require("node:fs"));
|
|
9387
9393
|
var path21 = __toESM(require("node:path"));
|
|
@@ -9680,6 +9686,7 @@ registerPluginBuildCommand(program, registry);
|
|
|
9680
9686
|
registerConfigCommand(program, registry);
|
|
9681
9687
|
registerTemplateCommand(program, registry);
|
|
9682
9688
|
registerUpdateCommand(program);
|
|
9689
|
+
registerPilotCommands(program);
|
|
9683
9690
|
program.command("doctor").description("\u8BCA\u65AD\u9879\u76EE DeepStorm \u914D\u7F6E\u72B6\u6001").action(() => {
|
|
9684
9691
|
const report = runDoctor(process.cwd());
|
|
9685
9692
|
printDoctorReport(report);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepstorm/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "DeepStorm CLI — 一键配置项目开发环境",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "billkang",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@clack/prompts": "^0.9.0",
|
|
22
|
+
"@deepstorm/pilot": "workspace:^",
|
|
22
23
|
"commander": "^12.0.0",
|
|
23
24
|
"dotenv": "^17.4.2",
|
|
24
25
|
"handlebars": "^4.7.8",
|