@vitejs/release-scripts 1.3.2 → 1.4.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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +9 -9
package/dist/index.js CHANGED
@@ -225,7 +225,7 @@ var release = async ({
225
225
  step("\nCommitting changes...");
226
226
  await runIfNotDry("git", ["add", "-A"]);
227
227
  await runIfNotDry("git", ["commit", "-m", `release: ${tag}`]);
228
- await runIfNotDry("git", ["tag", tag]);
228
+ await runIfNotDry("git", ["tag", "-a", "-m", tag, tag]);
229
229
  } else {
230
230
  console.log("No changes to commit.");
231
231
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitejs/release-scripts",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "@vitejs release scripts",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -28,19 +28,19 @@
28
28
  "dependencies": {
29
29
  "execa": "^8.0.1",
30
30
  "mri": "^1.2.0",
31
- "picocolors": "^1.0.1",
31
+ "picocolors": "^1.1.1",
32
32
  "prompts": "^2.4.2",
33
- "publint": "^0.2.9",
33
+ "publint": "^0.3.2",
34
34
  "semver": "^7.6.3"
35
35
  },
36
36
  "devDependencies": {
37
- "@arnaud-barre/tnode": "^0.19.2",
38
- "@types/node": "^20.14.13",
37
+ "@arnaud-barre/tnode": "^0.24.0",
38
+ "@types/node": "^22.10.9",
39
39
  "@types/prompts": "^2.4.9",
40
40
  "@types/semver": "^7.5.8",
41
- "esbuild": "^0.23.0",
42
- "prettier": "^3.3.3",
43
- "typescript": "^5.5.4"
41
+ "esbuild": "^0.24.2",
42
+ "prettier": "^3.4.2",
43
+ "typescript": "^5.7.3"
44
44
  },
45
- "packageManager": "pnpm@9.6.0"
45
+ "packageManager": "pnpm@9.15.4"
46
46
  }