Skip to content

Commit f1c363e

Browse files
committed
fix: run yarn after update
1 parent 2d8daac commit f1c363e

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.yarn/install-state.gz

3 Bytes
Binary file not shown.

scripts/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ export const version = autorun(
5757
pj.version = version;
5858
await fs.outputJSON(pjFile, pj, { spaces: 2 });
5959
}
60-
child_process.execSync(`git add -A; git commit -m "feat: v${version}"`, { stdio: 'inherit' });
60+
child_process.execSync(`yarn; git add -A; git commit -m "feat: v${version}"`, { stdio: 'inherit' });
6161
},
6262
);

0 commit comments

Comments
 (0)