diff options
author | 2022-09-16 10:40:06 -0700 | |
---|---|---|
committer | 2022-09-16 12:40:06 -0500 | |
commit | a800bf7ec1fc227710323bac4b94646afc4b7a79 (patch) | |
tree | 51abe4fb07df59e7aae357e190e664002c7f121c /examples/framework-vue/README.md | |
parent | 64aa903f04cd3fe1f531f577bf8900bf098006dc (diff) | |
download | astro-a800bf7ec1fc227710323bac4b94646afc4b7a79.tar.gz astro-a800bf7ec1fc227710323bac4b94646afc4b7a79.tar.zst astro-a800bf7ec1fc227710323bac4b94646afc4b7a79.zip |
.md only: npm init astro --> npm create astro (#4760)
* .md only: npm init astro --> npm create astro
For consistency with https://github.com/withastro/docs/pull/360. Docs always use `npm create astro` (never `npm init astro`), README.md files in this repo should do the same.
Search:
`\b(npm|yarn|pnpm) init astro\b`
Replace:
`$1 create astro`
Except for two instances:
1. `packages/create-astro/CHANGELOG.md` -- skipped because changelog.
2. `packages/create-astro/test/create-astro.test.js.skipped` -- skipped, old test disabled in https://github.com/withastro/astro/pull/3168.
* docs: add `@latest` to `npm create astro`
Co-authored-by: Bjorn Lu <bjorn@bjornlu.com>
Co-authored-by: Michael Rienstra <michael@goodmoney.com>
Diffstat (limited to 'examples/framework-vue/README.md')
-rw-r--r-- | examples/framework-vue/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/framework-vue/README.md b/examples/framework-vue/README.md index 95acfffde..34761e72f 100644 --- a/examples/framework-vue/README.md +++ b/examples/framework-vue/README.md @@ -1,7 +1,7 @@ # Astro + Vue Example ``` -npm init astro -- --template framework-vue +npm create astro@latest -- --template framework-vue ``` [](https://stackblitz.com/github/withastro/astro/tree/latest/examples/framework-vue) |