Skip to content

Commit

Permalink
fix: run yarn after update
Browse files Browse the repository at this point in the history
  • Loading branch information
acrazing committed Nov 13, 2024
1 parent 2d8daac commit f1c363e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified .yarn/install-state.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ export const version = autorun(
pj.version = version;
await fs.outputJSON(pjFile, pj, { spaces: 2 });
}
child_process.execSync(`git add -A; git commit -m "feat: v${version}"`, { stdio: 'inherit' });
child_process.execSync(`yarn; git add -A; git commit -m "feat: v${version}"`, { stdio: 'inherit' });
},
);

0 comments on commit f1c363e

Please sign in to comment.