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: use npx instead of ember-cli global #11

Merged
merged 1 commit into from
May 26, 2024
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# @embroider/app-blueprint

**Very** experimental blueprint for scaffolding ember v2 apps with Vite
**Very** experimental blueprint for scaffolding Ember v2 apps with Vite

This is likely to change on a daily basis so you have to keep up to date with the changes to expect it work. Use [ember-cli-update](https://github.com/ember-cli/ember-cli-update) to update to the latest version.

## Usage

```bash
ember new my-fancy-app -b @embroider/app-blueprint --pnpm
```
npx ember-cli@latest new my-fancy-app -b @embroider/app-blueprint --pnpm
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, we could also document the pnpm specific command:

pnpm dlx ember-cli@latest new my-fancy-app -b @embroider/app-blueprint --pnpm

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

firstly, you can just pnpx and it works ;)

but anyone who knows pnpm probably also knows how to convert from npx commands already so I'm happy to leave npx here 👍

```