@varlet/release 2.2.3-alpha.1779709786145 → 2.2.3-alpha.1779710112999

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 (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +14 -13
package/dist/cli.js CHANGED
@@ -5,7 +5,7 @@ import { cli, command } from "cleye";
5
5
  //#region src/cli.ts
6
6
  cli({
7
7
  name: "vr",
8
- version: "2.2.3-alpha.1779709786145",
8
+ version: "2.2.3-alpha.1779710112907",
9
9
  commands: [
10
10
  command({
11
11
  name: "release",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/release",
3
- "version": "2.2.3-alpha.1779709786145",
3
+ "version": "2.2.3-alpha.1779710112999",
4
4
  "description": "publish all packages, generate changelogs and check commit messages",
5
5
  "keywords": [
6
6
  "changelog",
@@ -29,6 +29,16 @@
29
29
  "default": "./dist/index.js"
30
30
  }
31
31
  },
32
+ "scripts": {
33
+ "build": "vp pack",
34
+ "commit-lint": "node dist/cli.js commit-lint",
35
+ "dev": "vp pack --watch",
36
+ "release": "vp pack && vp test run && node scripts/release.js",
37
+ "release:dev": "vp pack && node scripts/release.js",
38
+ "test": "vp test",
39
+ "test:coverage": "vp test run --coverage",
40
+ "type-check": "tsgo --noEmit"
41
+ },
32
42
  "dependencies": {
33
43
  "@clack/prompts": "^1.4.0",
34
44
  "cleye": "^2.6.0",
@@ -43,20 +53,11 @@
43
53
  "@types/semver": "^7.7.1",
44
54
  "@typescript/native-preview": "7.0.0-dev.20260524.1",
45
55
  "@vitest/coverage-v8": "^4.1.5",
46
- "vite-plus": "latest"
56
+ "vite-plus": "catalog:"
47
57
  },
48
58
  "engines": {
49
59
  "node": "^20.19.0 || >=22.12.0",
50
60
  "pnpm": ">=10.0"
51
61
  },
52
- "scripts": {
53
- "build": "vp pack",
54
- "commit-lint": "node dist/cli.js commit-lint",
55
- "dev": "vp pack --watch",
56
- "release": "vp pack && vp test run && node scripts/release.js",
57
- "release:dev": "vp pack && node scripts/release.js",
58
- "test": "vp test",
59
- "test:coverage": "vp test run --coverage",
60
- "type-check": "tsgo --noEmit"
61
- }
62
- }
62
+ "packageManager": "pnpm@11.1.3"
63
+ }