npm run build を実行すると出力先ディレクトリのファイルがすべて削除されてしまう。
サーバーサイドのスクリプトなんかを同ディレクトリへ配置しておきたい場合困る。
/scripts/build.js を変更することで元ファイルを残すことが出来る
.then(previousFileSizes => {
// Remove all content but keep the directory so that
// if you're in it, you don't end up in Trash
fs.emptyDirSync(paths.appBuild);
.then(previousFileSizes => {
// Remove all content but keep the directory so that
// if you're in it, you don't end up in Trash
//fs.emptyDirSync(paths.appBuild);
コメント