mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:23:08 +02:00
fix: pnpm dev時にファイルが空ならバックエンドの起動を待つように (#10210)
This commit is contained in:
parent
ad43011fb8
commit
8e8c2b40f9
1 changed files with 3 additions and 2 deletions
|
@ -40,8 +40,9 @@ const fs = require('fs');
|
|||
|
||||
const start = async () => {
|
||||
try {
|
||||
const exist = fs.existsSync(__dirname + '/../packages/backend/built/boot/index.js')
|
||||
if (!exist) throw new Error('not exist yet');
|
||||
const stat = fs.statSync(__dirname + '/../packages/backend/built/boot/index.js');
|
||||
if (!stat) throw new Error('not exist yet');
|
||||
if (stat.size === 0) throw new Error('not built yet');
|
||||
|
||||
await execa('pnpm', ['start'], {
|
||||
cwd: __dirname + '/../',
|
||||
|
|
Loading…
Reference in a new issue