@camunda8/cli 4.0.0-alpha.4 → 4.0.0-alpha.6
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/commands/plugins.d.ts.map +1 -1
- package/dist/commands/plugins.js +50 -7
- package/dist/commands/plugins.js.map +1 -1
- package/dist/core/logger.d.ts.map +1 -1
- package/dist/core/logger.js +20 -15
- package/dist/core/logger.js.map +1 -1
- package/dist/default-plugins/element-template/c8ctl-plugin.js +76 -9
- package/dist/default-plugins/element-template/package.json +7 -2
- package/dist/default-plugins/feel/c8ctl-plugin.js +120 -106
- package/dist/default-plugins/feel/package.json +1 -1
- package/dist/framework/command-registry.d.ts +23 -0
- package/dist/framework/command-registry.d.ts.map +1 -1
- package/dist/framework/command-registry.js +29 -10
- package/dist/framework/command-registry.js.map +1 -1
- package/dist/framework/ui/help.js +2 -3
- package/dist/framework/ui/help.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/utils/command-local/open-helpers.d.ts.map +1 -1
- package/dist/utils/command-local/open-helpers.js +1 -2
- package/dist/utils/command-local/open-helpers.js.map +1 -1
- package/dist/vendor/bpmn-element-templates.cjs +26935 -22048
- package/dist/vendor/bpmnlint.cjs +299 -140
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/cli",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.6",
|
|
4
4
|
"description": "Camunda 8 CLI - minimal-dependency CLI for Camunda 8 operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"build:vendor:element-template": "esbuild default-plugins/element-template/vendor-src/bundle-entry.js --bundle --format=cjs --platform=node --outfile=dist/vendor/bpmn-element-templates.cjs",
|
|
31
31
|
"build:vendor:bpmnlint": "node scripts/build-bpmnlint-vendor.mjs",
|
|
32
32
|
"build:plugins": "node scripts/build-plugins.mjs",
|
|
33
|
-
"build": "npm run
|
|
33
|
+
"build:dist": "npm run clean && tsc && npm run build:plugins && npm run build:vendor && npm run copy-plugins && npm run copy-templates",
|
|
34
|
+
"build": "npm run lint && npm run sync:readme && npm run sync:docs && npm run build:dist",
|
|
34
35
|
"lint": "biome check src/ tests/ scripts/ default-plugins/",
|
|
35
36
|
"lint:src": "biome check src/ scripts/",
|
|
36
37
|
"typecheck": "tsc --noEmit -p tsconfig.check.json",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"copy-templates": "node -e \"const fs=require('fs');const src='src/templates';const dest='dist/templates';if(fs.existsSync(src)){fs.cpSync(src,dest,{recursive:true})}\"",
|
|
41
42
|
"prepublishOnly": "npm run build",
|
|
42
43
|
"test": "npm run test:unit && npm run test:integration",
|
|
43
|
-
"test:unit": "npm run build:
|
|
44
|
+
"test:unit": "npm run build:dist && node --experimental-strip-types --test tests/unit/*.test.ts",
|
|
44
45
|
"test:integration": "npm run build:vendor && node --experimental-strip-types --experimental-test-isolation=none --test tests/integration/*.test.ts",
|
|
45
46
|
"dev": "node src/index.ts",
|
|
46
47
|
"cli": "node src/index.ts",
|