Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/initialization/TOOL_VERSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ labels: initialization

## `package.json` で管理する Node.js パッケージ

以下のツールは `package.json` の `devDependencies` でバージョンが指定され、`bun install` コマンドでインストールされます。(一部抜粋)
以下のツールは `package.json` の `devDependencies` でバージョンが指定され、`bun install --ignore-scripts` コマンドでインストールされます。(一部抜粋)

- **cspell (Spell Checker)**:
- 確認: `bun run cspell --version`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wc-check-code-spell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
install_args: "bun"

- name: Install dependencies
run: bun install --frozen-lockfile
run: bun install --frozen-lockfile --ignore-scripts

- name: Run spell check
run: bun run cspell lint
2 changes: 1 addition & 1 deletion docs/SPELL_CHECK.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Pull Request 作成時などに GitHub Actions によって自動的にスペル
mise install

# パッケージのインストール
bun install
bun install --ignore-scripts
```

インストールが終わったら、以下のコマンドを実行してプロジェクト全体のスペルチェックを行います。
Expand Down
10 changes: 5 additions & 5 deletions tools/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ fi
##
##############################################################################
echo ""
print_step "bun install"
print_step "bun install --ignore-scripts"
if type bun >/dev/null 2>&1; then
if bun install; then
print_result 0 "bun install"
if bun install --ignore-scripts; then
print_result 0 "bun install --ignore-scripts"
else
print_result $? "bun install"
print_result $? "bun install --ignore-scripts"
fi
else
echo -e "${YELLOW}[!] bun install: Skip because it could not be found.${NC}"
echo -e "${YELLOW}[!] bun install --ignore-scripts: Skip because it could not be found.${NC}"
echo -e "${YELLOW}[!] This may be due to mise installation not completed.${NC}"
fi

Expand Down
Loading