We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6eadf commit e9e1a26Copy full SHA for e9e1a26
scripts/manual-publish.js
@@ -33,7 +33,9 @@ execSync("pnpm changeset version");
33
// exit pre mode -- to avoid collision with full releases
34
try {
35
execSync("pnpm changeset pre exit");
36
-} catch {}
+} catch {
37
+ /**empty */
38
+}
39
40
/** not requiring as require is cached by npm/node */
41
const NEW_VERSION = JSON.parse(
scripts/publish.js
@@ -4,7 +4,9 @@ const { execSync } = require("child_process");
4
// Apply changesets if any -- e.g., coming from pre-release branches
5
6
7
8
+ // empty
9
10
11
execSync("pnpm changeset version");
12
execSync(
0 commit comments