Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: change npm and pnpm to be lowercase #1603

Merged
merged 1 commit into from
Oct 12, 2024
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 guide/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

基本的に、Vite を使用した開発は静的ファイルサーバーを使用した時とそれほど変わりません。しかし、Vite はバンドラーベースのセットアップで一般的な機能をサポートするためにネイティブ ESM をインポートすることで様々な拡張機能を提供します。

## NPM の依存関係の解決と事前バンドル
## npm の依存関係の解決と事前バンドル

ネイティブ ES のインポートは次のような生のモジュールをサポートしていません:

Expand Down
16 changes: 8 additions & 8 deletions guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ Vite は [Node.js](https://nodejs.org/en/) 18+ または 20+ のバージョン

::: code-group

```bash [NPM]
```bash [npm]
$ npm create vite@latest
```

```bash [Yarn]
$ yarn create vite
```

```bash [PNPM]
```bash [pnpm]
$ pnpm create vite
```

Expand All @@ -73,7 +73,7 @@ $ bun create vite

::: code-group

```bash [NPM]
```bash [npm]
# npm 7+ は追加で 2 つのダッシュが必要:
$ npm create vite@latest my-vue-app -- --template vue
```
Expand All @@ -82,7 +82,7 @@ $ npm create vite@latest my-vue-app -- --template vue
$ yarn create vite my-vue-app --template vue
```

```bash [PNPM]
```bash [pnpm]
$ pnpm create vite my-vue-app --template vue
```

Expand Down Expand Up @@ -118,15 +118,15 @@ npm run dev

::: code-group

```bash [NPM]
```bash [npm]
$ npm install -D vite
```

```bash [Yarn]
$ yarn add -D vite
```

```bash [PNPM]
```bash [pnpm]
$ pnpm add -D vite
```

Expand All @@ -146,15 +146,15 @@ $ bun add -D vite

::: code-group

```bash [NPM]
```bash [npm]
$ npx vite
```

```bash [Yarn]
$ yarn vite
```

```bash [PNPM]
```bash [pnpm]
$ pnpm vite
```

Expand Down