@vitejs/release-scripts 1.3.0 → 1.3.1

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 +3 -0
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -107,6 +107,9 @@ async function publishPackage(pkgDir, tag, provenance, packageManager = "npm") {
107
107
  if (provenance) {
108
108
  publicArgs.push(`--provenance`);
109
109
  }
110
+ if (packageManager === "pnpm") {
111
+ publicArgs.push(`--no-git-checks`);
112
+ }
110
113
  await runIfNotDry(packageManager, publicArgs, {
111
114
  cwd: pkgDir
112
115
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitejs/release-scripts",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "@vitejs release scripts",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -31,10 +31,10 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@arnaud-barre/tnode": "^0.19.1",
34
- "@types/node": "^18.17.14",
34
+ "@types/node": "^18.17.17",
35
35
  "@types/prompts": "^2.4.4",
36
- "@types/semver": "^7.5.1",
37
- "esbuild": "^0.19.2",
36
+ "@types/semver": "^7.5.2",
37
+ "esbuild": "^0.19.3",
38
38
  "prettier": "^3.0.3",
39
39
  "typescript": "^5.2.2"
40
40
  }