Compare commits

...

1 Commits

Author SHA1 Message Date
Thierry
8a39bc460f fix(lite): linting 2023-07-29 12:20:59 +02:00
2 changed files with 5 additions and 2 deletions

View File

@@ -7,7 +7,8 @@
"preview": "vite preview --port 4173",
"build-only": "GIT_HEAD=$(git rev-parse HEAD) vite build",
"deploy": "./scripts/deploy.sh",
"test": "yarn run type-check",
"lint": "eslint src",
"test": "run-p type-check lint",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {

View File

@@ -19,7 +19,9 @@ import { useTaskStore } from "@/stores/task.store";
import { usePageTitleStore } from "@/stores/page-title.store";
import { useI18n } from "vue-i18n";
const { pendingTasks, finishedTasks, isReady, hasError } = useTaskStore().subscribe();
const { pendingTasks, finishedTasks, isReady, hasError } =
useTaskStore().subscribe();
const { t } = useI18n();
const titleStore = usePageTitleStore();