mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-27 17:16:57 +00:00
fix local dev errors caused by missing reversi / bubble game builds
This commit is contained in:
parent
f2382e951e
commit
eaed8f2cec
1 changed files with 13 additions and 0 deletions
|
@ -39,6 +39,19 @@ await Promise.all([
|
|||
}),
|
||||
]);
|
||||
|
||||
await Promise.all([
|
||||
execa('pnpm', ['--filter', 'misskey-reversi', 'build'], {
|
||||
cwd: _dirname + '/../',
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
}),
|
||||
execa('pnpm', ['--filter', 'misskey-bubble-game', 'build'], {
|
||||
cwd: _dirname + '/../',
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
}),
|
||||
]);
|
||||
|
||||
execa('pnpm', ['build-pre', '--watch'], {
|
||||
cwd: _dirname + '/../',
|
||||
stdout: process.stdout,
|
||||
|
|
Loading…
Add table
Reference in a new issue