Prevent nodemon infinite loop on yarn dev after yarn clean

This commit is contained in:
Alice Gaudon 2021-04-23 18:19:05 +02:00
parent 10bd8bb95e
commit a97e68289e
1 changed files with 8 additions and 0 deletions

View File

@ -2,3 +2,11 @@ const fs = require('fs');
const path = require('path');
fs.copyFileSync('package.json', path.join('src', 'package.json'));
// These dir must exist for nodemon not to loop indefinitely.
[
'build',
'public',
].forEach(dir => {
if (!fs.existsSync(dir)) fs.mkdirSync(dir);
});