@camunda8/cli 2.8.0-alpha.3 → 2.8.0-alpha.4
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 +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/cli",
|
|
3
|
-
"version": "2.8.0-alpha.
|
|
3
|
+
"version": "2.8.0-alpha.4",
|
|
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": "
|
|
37
|
+
"test": "npm run test:unit && npm run test:integration",
|
|
38
38
|
"test:unit": "node --experimental-strip-types --test tests/unit/*.test.ts",
|
|
39
|
-
"test:integration": "node --experimental-strip-types --test tests/integration/*.test.ts",
|
|
39
|
+
"test:integration": "node --experimental-strip-types --experimental-test-isolation=none --test tests/integration/*.test.ts",
|
|
40
40
|
"dev": "node src/index.ts",
|
|
41
41
|
"cli": "node src/index.ts"
|
|
42
42
|
},
|