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(crwa): Fix incorrect command to test crwa canary #6435

Merged
merged 4 commits into from
Sep 27, 2022
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 packages/create-redwood-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ This will create a new project using the local `template/` codebase
### How to run other published versions for debugging
By default yarn create will pick the latest stable version to run, but you can specify a different version via yarn too!

To try the canary version using yarn, run:
To try the canary version, run:
```
yarn create redwood-app@canary -p create-redwood-app /path/to/project
npx create-redwood-app@canary /path/to/project
```

Note that this will still create a project with the latest stable version, but run the canary version of create-redwood-app, and is only useful for debugging.
Note that this will still create a project with the latest stable version, but run the canary version of create-redwood-app, and is mainly useful for debugging this package, and not the redwood canary release.

You can specify any tag or version instead of `@canary`

Expand Down