Is there a plan to upgrade App Skeleton Generator to latest version?
It still generate a package.json for vue2.
Does anyone know the step to reconfigure nvm/npm to use vue3/latest package.json.
Also I guess there is also other update required for project structure. Like different configuration of tools (stylint, webpack, …)
Well… It is just a normal repo. So, you can checkout and commit (to a fork or to a dedicated branch) and file a PR. After that, the app store needs an update as well but that is another story.
You can update the template as if it was a normal app using npm install
and npm uninstall
. Just commit the package.json
and eventually package-lock.json
(IDK if it is committed right now. Just keep it in the same state).
Migration of Webpack to Vite might be an option to do as a by-product (or prior to have a smaller PR). Other dependencies will come to be updated as well. Also you might need Pinia instead of Vuex (IDK if a store is in use in the notes app).
Well, that’s the short answer. I have not done it yet and I do not know of all the possible pitfalls you might run into.
Christian