1
0
mirror of synced 2026-03-24 03:38:34 +08:00

chore: release v1.0.0-rc.8

This commit is contained in:
roymondchen
2022-06-15 14:35:04 +08:00
committed by jia000
parent 154860c66c
commit 48c4f784c4
18 changed files with 89 additions and 71 deletions

View File

@@ -88,7 +88,7 @@ async function main() {
// build all packages with types
step('\nBuilding all packages...');
if (!skipBuild && !isDryRun) {
// await run('pnpm', ['run', 'build']);
await run('pnpm', ['run', 'build']);
} else {
console.log(`(skipped)`);
}
@@ -99,7 +99,7 @@ async function main() {
// update pnpm-lock.yaml
step('\nUpdating lockfile...');
await run(`pnpm`, ['reinstall']);
await run(`pnpm`, ['install', '--prefer-offline']);
const { stdout } = await run('git', ['diff'], { stdio: 'pipe' });
if (stdout) {