@revturbine/cli 0.7.1 → 0.8.0

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 (3) hide show
  1. package/README.md +16 -4
  2. package/dist/cli.js +1173 -233
  3. package/package.json +22 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revturbine/cli",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "revturbine — verify RevTurbine ExportedConfig files and ship them to a RevTurbine instance through the Change Set lifecycle.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -10,6 +10,7 @@
10
10
  "homepage": "https://github.com/revt-eng/revturbine-cli#readme",
11
11
  "bugs": "https://github.com/revt-eng/revturbine-cli/issues",
12
12
  "type": "module",
13
+ "packageManager": "npm@11.18.0",
13
14
  "bin": {
14
15
  "revturbine": "dist/cli.js"
15
16
  },
@@ -17,28 +18,38 @@
17
18
  "dist"
18
19
  ],
19
20
  "engines": {
20
- "node": ">=20"
21
+ "node": ">=22.13"
21
22
  },
22
23
  "scripts": {
23
24
  "build": "tsup",
24
25
  "generate:schema": "node scripts/generate-schema-snapshot.mjs",
26
+ "revt:sync": "node scripts/sync-revt-deps.mjs",
25
27
  "typecheck": "tsc --noEmit",
26
28
  "test": "vitest run",
27
29
  "lint": "eslint .",
28
- "verify": "npm run typecheck && npm run lint && npm run test"
30
+ "check:schema": "node scripts/check-schema-consistency.mjs",
31
+ "verify": "npm run typecheck && npm run lint && npm run check:schema && npm run test"
29
32
  },
30
33
  "dependencies": {
31
34
  "commander": "^15.0.0",
32
35
  "zod": "4.4.3"
33
36
  },
34
37
  "devDependencies": {
35
- "@eslint/js": "^9.39.4",
36
- "@types/node": "^22.15.3",
37
- "esbuild": "^0.28.0",
38
- "eslint": "^9.13.0",
39
- "tsup": "^8.3.0",
40
- "typescript": "^5.6.3",
41
- "typescript-eslint": "^8.62.0",
42
- "vitest": "^4.1.8"
38
+ "@eslint/js": "^10.0.1",
39
+ "@types/node": "^22.20.1",
40
+ "esbuild": "^0.28.1",
41
+ "eslint": "^10.7.0",
42
+ "tsup": "^8.5.1",
43
+ "typescript": "^6.0.3",
44
+ "typescript-eslint": "^8.64.0",
45
+ "vitest": "^4.1.10"
46
+ },
47
+ "overrides": {
48
+ "tsup": {
49
+ "esbuild": "$esbuild"
50
+ }
51
+ },
52
+ "allowScripts": {
53
+ "esbuild@0.28.1": true
43
54
  }
44
55
  }