@acomo/cli 1.0.0 → 1.0.1
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 +31 -6
- package/dist/index.js +256 -47
- package/dist/index.js.map +4 -4
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acomo/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Official CLI for acomo workflow management platform",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"
|
|
15
|
+
"generate:descriptions": "tsx scripts/generate-descriptions.ts",
|
|
16
|
+
"build": "npm run generate:descriptions && node build.js",
|
|
16
17
|
"dev": "tsx src/index.ts",
|
|
17
18
|
"clean": "rm -rf dist",
|
|
18
19
|
"prepublishOnly": "npm run clean && npm run build"
|