We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 622ddca commit 92d9406Copy full SHA for 92d9406
2 files changed
package.json
@@ -24,5 +24,5 @@
24
"peerDependencies": {
25
"typescript": "^5.0.0"
26
},
27
- "version": "0.0.0-pre.1719967046799"
+ "version": "0.0.0-pre.1719967409932"
28
}
src/scripts/release.ts
@@ -129,6 +129,18 @@ program
129
process.exit(1);
130
131
132
+ const ghCheckResult = await Bun.$`which gh`;
133
+ if (ghCheckResult.exitCode !== 0) {
134
+ console.error(
135
+ `The 'gh' command is not installed. Please install it.
136
+
137
+ $ brew install gh
138
139
+ `,
140
+ );
141
+ process.exit(1);
142
+ }
143
144
await cleanDist();
145
const version = await getLocalVersion();
146
const bumpedVersion = bumpVersion(version, type);
0 commit comments