react にて npm run build実行時に出力先のディレクトリにあるファイルが削除されないようにする

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);

コメント

タイトルとURLをコピーしました