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
Hello,
Is there a recommendation for updating an existing project created with vue-create? ( npm init vue@3 )
npm init vue@3
Since the creation of my app, I see that there have been some fixes, like:
src
Thanks
Mathieu
The text was updated successfully, but these errors were encountered:
For example, if you created your project two weeks ago, answered yes to "Add TypeScript", "Add JSX Support", and "Add Vitest for Unit Testing", you can run the following commands to see the diffs between the templates generated then and now:
git clone https://github.com/vuejs/create-vue-templates.git cd create-vue-templates git log --since="2 weeks ago" -p typescript-jsx-vitest # or # git log --since="2022.02.10" -p typescript-jsx-vitest
The https://github.com/vuejs/create-vue-templates repository stores snapshots of the generated templates after each release of create-vue.
create-vue
Sorry, something went wrong.
Another interesting question would be how to add features to an existing project that you chose not to add them in the first place.
You can try to use diff -r
diff -r
git clone https://github.com/vuejs/create-vue-templates.git cd create-vue-templates diff -r typescript-pinia-vitest typescript-pinia-vitest-cypress
No branches or pull requests
messenjer commentedFeb 23, 2022
•
edited
Hello,
Is there a recommendation for updating an existing project created with vue-create? (
npm init vue@3
)Since the creation of my app, I see that there have been some fixes, like:
src
#56Thanks
Mathieu
The text was updated successfully, but these errors were encountered: