Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.
Open
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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This is likely to change on a daily basis so you have to keep up to date with th
This following command will create a new folder called `my-fancy-app` in your cwd

```bash
npx ember-cli@latest new my-fancy-app -b @embroider/app-blueprint --pnpm
pnpx ember-cli@latest new my-fancy-app -b @embroider/app-blueprint --pnpm
```

### Updating an existing Ember app
Expand All @@ -34,5 +34,8 @@ Note: replace `your-app-name` with your existing app name (from the `package.jso
Use [ember-cli-update](https://github.com/ember-cli/ember-cli-update) to update to later versions of the blueprint:

```bash
pnpm dlx ember-cli-update
pnpx ember-cli-update
```

> [!TIP]
> If you want to use `npm` instead of `pnpm`, then replace `pnpx` with `npx` in the commands above.