Merged PR 431: static_contentsフォルダが空の場合の対応を行う

## 概要
[Task2719: static_contentsフォルダが空の場合の対応を行う](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2719)

- 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず)
- 何をどう変更したか、追加したライブラリなど
- このPull Requestでの対象/対象外
- 影響範囲(他の機能にも影響があるか)
  - statis_contents配下が空の場合、gitに認識されなくなってしまうので、コピー処理自体を削除しました
  - 今後復活させたくなった時のため、wikiに手順を追加しておきました。
https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_wiki/wikis/OMDSDictation_wiki/268/%E9%9D%99%E7%9A%84%E3%82%B3%E3%83%B3%E3%83%86%E3%83%B3%E3%83%84%E3%81%AB%E5%AF%BE%E3%81%97%E3%81%A6%E9%9D%99%E7%9A%84%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%82%92%E9%85%8D%E7%BD%AE%E3%81%97%E3%81%9F%E3%81%84

## レビューポイント
- 特にレビューしてほしい箇所
- 軽微なものや自明なものは記載不要
- 修正範囲が大きい場合などに記載
- 全体的にや仕様を満たしているか等は本当に必要な時のみ記載
  - 特にありません

## UIの変更
- Before/Afterのスクショなど
- スクショ置き場
  - 特にありません

## 動作確認状況
- ローカルで確認

## 補足
- 相談、参考資料などがあれば
This commit is contained in:
masaaki 2023-09-21 07:59:09 +00:00
parent cda3652817
commit 9ac40c00ac

View File

@ -7,9 +7,9 @@
},
"scripts": {
"start": "vite",
"build": "tsc && vite build && cp -r static_contents/. build/",
"build:prod": "tsc && vite build && cp -r static_contents/. build/",
"build:local": "tsc && vite build && cp -r static_contents/. build/ && sh localdeploy.sh",
"build": "tsc && vite build",
"build:prod": "tsc && vite build",
"build:local": "tsc && vite build && sh localdeploy.sh",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"codegen": "sh codegen.sh",
@ -96,4 +96,4 @@
}
]
}
}
}