From 494271959e156fdffc772585023412389b25cefd Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Mon, 7 Aug 2023 14:49:52 -0700 Subject: [PATCH] docs(package-management): Add Bun as supported package manager --- content/cli/usages.md | 2 +- content/introduction.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/cli/usages.md b/content/cli/usages.md index d46934444d..860c4c5ea7 100644 --- a/content/cli/usages.md +++ b/content/cli/usages.md @@ -31,7 +31,7 @@ Creates and initializes a new Nest project. Prompts for package manager. | `--dry-run` | Reports changes that would be made, but does not change the filesystem.
Alias: `-d` | | `--skip-git` | Skip git repository initialization.
Alias: `-g` | | `--skip-install` | Skip package installation.
Alias: `-s` | -| `--package-manager [package-manager]` | Specify package manager. Use `npm`, `yarn`, or `pnpm`. Package manager must be installed globally.
Alias: `-p` | +| `--package-manager [package-manager]` | Specify package manager. Use `npm`, `yarn`, `pnpm`, or `bun`. Package manager must be installed globally.
Alias: `-p` | | `--language [language]` | Specify programming language (`TS` or `JS`).
Alias: `-l` | | `--collection [collectionName]` | Specify schematics collection. Use package name of installed npm package containing schematic.
Alias: `-c` | | `--strict` | Start the project with the following TypeScript compiler flags enabled: `strictNullChecks`, `noImplicitAny`, `strictBindCallApply`, `forceConsistentCasingInFileNames`, `noFallthroughCasesInSwitch` | diff --git a/content/introduction.md b/content/introduction.md index accbe1dceb..f1a4ec9ea4 100644 --- a/content/introduction.md +++ b/content/introduction.md @@ -42,7 +42,7 @@ Open your browser and navigate to [`http://localhost:3000/`](http://localhost:30 To install the JavaScript flavor of the starter project, use `javascript-starter.git` in the command sequence above. -You can also manually create a new project from scratch by installing the core and supporting files with **npm** (or **yarn**). In this case, of course, you'll be responsible for creating the project boilerplate files yourself. +You can also manually create a new project from scratch by installing the core and supporting files with **npm** (or **yarn**/**pnpm**/**bun**). In this case, of course, you'll be responsible for creating the project boilerplate files yourself. ```bash $ npm i --save @nestjs/core @nestjs/common rxjs reflect-metadata