@camunda8/cli 2.7.0-alpha.10 → 2.7.0-alpha.11

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.
Files changed (1) hide show
  1. package/package.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda8/cli",
3
- "version": "2.7.0-alpha.10",
3
+ "version": "2.7.0-alpha.11",
4
4
  "description": "Camunda 8 CLI - minimal-dependency CLI for Camunda 8 operations",
5
5
  "type": "module",
6
6
  "engines": {
@@ -27,7 +27,9 @@
27
27
  "scripts": {
28
28
  "prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && sh -c 'hp=$(git config --local --get core.hooksPath 2>/dev/null || true); if [ -z \"$hp\" ] || [ \"$hp\" = \".githooks\" ]; then git config --local core.hooksPath .githooks; else echo \"prepare: leaving existing core.hooksPath=$hp\"; fi' || true",
29
29
  "build": "npm run lint && npm run clean && tsc && npm run copy-plugins && npm run copy-templates",
30
- "lint": "biome check src/",
30
+ "lint": "biome check src/ tests/",
31
+ "lint:src": "biome check src/",
32
+ "typecheck": "tsc --noEmit -p tsconfig.check.json",
31
33
  "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
32
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})}\"",
33
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})}\"",