diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2022-12-20 13:05:36 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-20 13:05:36 +0900 |
| commit | 2fe86fd86937b47969447d91bb987b7e0233afd5 (patch) | |
| tree | af191c8be7193a1e5b254f1e857b14e8023f90d2 /package.json | |
| parent | :art: (diff) | |
| download | sharkey-2fe86fd86937b47969447d91bb987b7e0233afd5.tar.gz sharkey-2fe86fd86937b47969447d91bb987b7e0233afd5.tar.bz2 sharkey-2fe86fd86937b47969447d91bb987b7e0233afd5.zip | |
enhance: Vite HMR while yarn dev, and more build tuning (#9361)
* enhance: Vite HMR while yarn dev, and more build tuning
* use localhost
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 01aabc099b..1090c8eb1c 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,8 @@ ], "private": true, "scripts": { - "build": "yarn workspaces foreach run build && yarn run gulp", + "build-pre": "node ./scripts/build-pre.js", + "build": "yarn build-pre && yarn workspaces foreach run build && yarn run gulp", "start": "cd packages/backend && node ./built/boot/index.js", "start:test": "cd packages/backend && cross-env NODE_ENV=test node ./built/boot/index.js", "init": "yarn migrate", |