@camunda8/cli 2.7.0-alpha.11 → 2.7.0-alpha.12
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/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/cli",
|
|
3
|
-
"version": "2.7.0-alpha.
|
|
3
|
+
"version": "2.7.0-alpha.12",
|
|
4
4
|
"description": "Camunda 8 CLI - minimal-dependency CLI for Camunda 8 operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"copy-plugins": "node -e \"const fs=require('fs');const path=require('path');const src='default-plugins';const dest='dist/default-plugins';if(fs.existsSync(src)){fs.cpSync(src,dest,{recursive:true})}\"",
|
|
35
35
|
"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})}\"",
|
|
36
36
|
"prepublishOnly": "npm run build",
|
|
37
|
-
"test": "node --experimental-strip-types --test
|
|
38
|
-
"test:unit": "node --experimental-strip-types --test
|
|
39
|
-
"test:integration": "node --experimental-strip-types --test
|
|
37
|
+
"test": "node --experimental-strip-types --test tests/unit/*.test.ts tests/integration/*.test.ts",
|
|
38
|
+
"test:unit": "node --experimental-strip-types --test tests/unit/*.test.ts",
|
|
39
|
+
"test:integration": "node --experimental-strip-types --test tests/integration/*.test.ts",
|
|
40
40
|
"dev": "node src/index.ts",
|
|
41
41
|
"cli": "node src/index.ts"
|
|
42
42
|
},
|