mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
[yarn] Make dev script only build things once
This commit is contained in:
parent
141c134698
commit
ed2050e6be
1 changed files with 1 additions and 6 deletions
|
@ -7,16 +7,11 @@ const execa = require("execa");
|
|||
stderr: process.stderr,
|
||||
});
|
||||
|
||||
await execa("yarn", ["workspace", "iceshrimp-js", "build"], {
|
||||
await execa("yarn", ["build"], {
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
})
|
||||
|
||||
await execa("yarn", ["workspaces", "foreach", "-Apitv", "run", "build"], {
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
});
|
||||
|
||||
execa("yarn", ["gulp", "watch"], {
|
||||
cwd: __dirname + "/../",
|
||||
stdout: process.stdout,
|
||||
|
|
Loading…
Reference in a new issue