Skip to content

Commit e9e1a26

Browse files
committed
empty blocks
1 parent 9d6eadf commit e9e1a26

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

scripts/manual-publish.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ execSync("pnpm changeset version");
3333
// exit pre mode -- to avoid collision with full releases
3434
try {
3535
execSync("pnpm changeset pre exit");
36-
} catch {}
36+
} catch {
37+
/**empty */
38+
}
3739

3840
/** not requiring as require is cached by npm/node */
3941
const NEW_VERSION = JSON.parse(

scripts/publish.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ const { execSync } = require("child_process");
44
// Apply changesets if any -- e.g., coming from pre-release branches
55
try {
66
execSync("pnpm changeset pre exit");
7-
} catch {}
7+
} catch {
8+
// empty
9+
}
810
try {
911
execSync("pnpm changeset version");
1012
execSync(

0 commit comments

Comments
 (0)