File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ labels: initialization
4545
4646## ` package.json ` で管理する Node.js パッケージ
4747
48- 以下のツールは ` package.json ` の ` devDependencies ` でバージョンが指定され、` bun install ` コマンドでインストールされます。(一部抜粋)
48+ 以下のツールは ` package.json ` の ` devDependencies ` でバージョンが指定され、` bun install --ignore-scripts ` コマンドでインストールされます。(一部抜粋)
4949
5050- ** cspell (Spell Checker)** :
5151 - 確認: ` bun run cspell --version `
Original file line number Diff line number Diff line change 2727 install_args : " bun"
2828
2929 - name : Install dependencies
30- run : bun install --frozen-lockfile
30+ run : bun install --frozen-lockfile --ignore-scripts
3131
3232 - name : Run spell check
3333 run : bun run cspell lint
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ Pull Request 作成時などに GitHub Actions によって自動的にスペル
8383mise install
8484
8585# パッケージのインストール
86- bun install
86+ bun install --ignore-scripts
8787```
8888
8989インストールが終わったら、以下のコマンドを実行してプロジェクト全体のスペルチェックを行います。
Original file line number Diff line number Diff line change 5959# #
6060# #############################################################################
6161echo " "
62- print_step " bun install"
62+ print_step " bun install --ignore-scripts "
6363if type bun > /dev/null 2>&1 ; then
64- if bun install; then
65- print_result 0 " bun install"
64+ if bun install --ignore-scripts ; then
65+ print_result 0 " bun install --ignore-scripts "
6666 else
67- print_result $? " bun install"
67+ print_result $? " bun install --ignore-scripts "
6868 fi
6969else
70- echo -e " ${YELLOW} [!] bun install: Skip because it could not be found.${NC} "
70+ echo -e " ${YELLOW} [!] bun install --ignore-scripts : Skip because it could not be found.${NC} "
7171 echo -e " ${YELLOW} [!] This may be due to mise installation not completed.${NC} "
7272fi
7373
You can’t perform that action at this time.
0 commit comments