To change code:
cd ../vue
npm install
npm run dev
You can check changes at localhost.
Once you are satisfied with the changes, run:
npm run build
Then create a PR, first to staging, then to main (see below).
- branch
main - only merge after pr review
- branch
staging - just push a pr to this branch to staging
All code must be formatted by volar
To auto-format on save in visual studio code add this to your settings.json
"[vue]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Vue.volar"
},
