From 59067e49febe451799fb252a46eedc8ac0bdd37b Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Wed, 24 Mar 2021 18:49:34 +0100 Subject: [PATCH] package.json scripts: use NodeJS instead of unix commands --- scripts/clean.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/clean.js b/scripts/clean.js index d5ef093..278cc11 100644 --- a/scripts/clean.js +++ b/scripts/clean.js @@ -1,7 +1,9 @@ const fs = require('fs'); [ + 'build', 'dist', + 'public', ].forEach(file => { if (fs.existsSync(file)) { console.log('Cleaning', file, '...');