@dazitech/cli 3.0.2 → 3.0.3
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/README.md +2 -2
- package/dist/clis/dazi-app.js +1 -1
- package/dist/clis/dazi-flow.js +2395 -1680
- package/dist/clis/dazi-onto.js +79 -14
- package/dist/clis/dazi.js +80 -15
- package/dist/docs/flow/ai-workflow-playbook.md +9 -8
- package/dist/docs/flow/flow-project-guide.md +41 -29
- package/dist/docs/flow/flows-guide.md +23 -16
- package/dist/docs/flow/local-files-spec.md +3 -3
- package/dist/docs/flow/node-code-guide.md +7 -7
- package/dist/docs/flow/run-guide.md +3 -3
- package/dist/docs/flow/variables-guide.md +4 -4
- package/dist/docs/guides/cli-invocation.md +3 -2
- package/dist/docs/guides/cli-reference.md +3 -1
- package/dist/docs/guides/flow-consistency-checklist.md +3 -3
- package/dist/docs/guides/quickstart.md +1 -1
- package/dist/docs/guides/troubleshooting.md +6 -5
- package/dist/docs/index.json +1 -1
- package/dist/examples/index.json +1 -1
- package/dist/prompts/index.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ pnpm run publish:cli
|
|
|
78
78
|
|
|
79
79
|
```powershell
|
|
80
80
|
# 全局
|
|
81
|
-
pnpm add -g @dazitech/cli@3.0.
|
|
81
|
+
pnpm add -g @dazitech/cli@3.0.3
|
|
82
82
|
|
|
83
83
|
# 确认 PATH(pnpm 全局 bin)
|
|
84
84
|
pnpm bin -g
|
|
@@ -91,7 +91,7 @@ dazi auth whoami
|
|
|
91
91
|
在 `dazi-work` 根目录:
|
|
92
92
|
|
|
93
93
|
```powershell
|
|
94
|
-
dazi flow project status --dir "
|
|
94
|
+
dazi flow project status --dir "D:\path\to\dazi-work\项目\<业务名>\流程\flows\MyFlow"
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## 项目内安装(可选)
|
package/dist/clis/dazi-app.js
CHANGED
|
@@ -16753,7 +16753,7 @@ function registerLegacyCompatCommands(program3) {
|
|
|
16753
16753
|
var program2 = new Command();
|
|
16754
16754
|
program2.name("dazi-app").description(
|
|
16755
16755
|
"\u642D\u5B50 App CLI \u2014 DRAP \u524D\u7AEF\u5E94\u7528\uFF08manifest / build / upload / preview\uFF09"
|
|
16756
|
-
).version("3.0.
|
|
16756
|
+
).version("3.0.3", "-v, --version");
|
|
16757
16757
|
registerAuth(program2);
|
|
16758
16758
|
registerBuild(program2);
|
|
16759
16759
|
registerDev(program2);
|