mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
commit deecf669d3e0b7d865a5e41ddf12611b0d25c1ac
Author: Kalista Payne <kalista@habitica.com>
Date: Wed Aug 13 17:37:41 2025 -0500
fix(background): *inside* forest witchs cottage
commit 977ebb5b7866d687727402ddaefa470932750491
Author: Kalista Payne <kalista@habitica.com>
Date: Wed Aug 13 17:08:05 2025 -0500
feat(content): October and November releases
commit fe46733a618501e688c590a9c05175f8504d3473
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 17:06:59 2025 -0500
fix(content): missing strings and release dates
commit fd4d69be71e38c8e985799369a370c50cb5230af
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 16:51:06 2025 -0500
chore(sprites): compile, update subproj
commit c055213790a32449d6bd6082168b34a1ff8e8554
Author: Kalista Payne <kalista@habitica.com>
Date: Tue Aug 12 16:49:14 2025 -0500
feat(content): September 2025 Gala and monthly
|
||
|---|---|---|
| .. | ||
| public/static | ||
| scripts | ||
| src | ||
| tests/unit | ||
| .browserslistrc | ||
| .eslintrc.js | ||
| index.html | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.js | ||
| README.md | ||
| vite.config.mjs | ||
| vitest.config.js | ||
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