a0383c785a
commit 5d3713008dc3041f63b23b22196e1ed79fab45bd Author: Kalista Payne <sabrecat@gmail.com> Date: Wed Jan 8 14:39:27 2025 -0600 fix(text): pet Pet commit 3ff5d7afeb517ae3d0933d8e18045b24575bb90b Author: Kalista Payne <sabrecat@gmail.com> Date: Wed Jan 8 14:34:02 2025 -0600 fix(links): remove unnecessary style and icon commit 5023dd9258aa0f9416daa212ed1249db2e5d5fe4 Author: Kalista Payne <sabrecat@gmail.com> Date: Wed Jan 8 09:43:17 2025 -0600 fix(links): update task modal markdown help commit 81ebb279cd881d1c560668c3cb03600d85b9f5b9 Author: Kalista Payne <sabrecat@gmail.com> Date: Wed Jan 8 09:26:11 2025 -0600 fix(misc): clean up some layout and one more link commit 2fd216f01531052aa769738f8fe1956ca6943822 Author: Kalista Payne <sabrecat@gmail.com> Date: Tue Jan 7 16:09:28 2025 -0600 fix(links): remove/revise some outdated wiki links
Habitica Client
Project setup
npm install
Compiles and hot-reloads for development
npm run serve
Compiles and minifies for production
npm run build
Run your unit tests
npm run test:unit
Lints and fixes files
npm run lint
Customize configuration
Vue Structure
Currently pages and components are mixed in /src/components this is not a good way to find the files easy.
Thats why each changed / upcoming page / component should be put in either /src/components or in the /src/pages directory.
Inside Pages, each page can have a subfolder which contains sub-components only needed for that page - otherwise it has to be added to the normal components folder.
At the end of all the changes - the components should only contain components needed between all pages