feat: init loading states, minor ui improvements

This commit is contained in:
liyasthomas
2021-10-18 09:36:33 +05:30
parent 5b824ccb17
commit 187a30abac
4 changed files with 82 additions and 25 deletions

View File

@@ -20,7 +20,9 @@
"lint:script": "eslint --ext .ts,.js,.vue --ignore-path .gitignore",
"lint:style": "stylelint **/*.{css,scss,vue} --ignore-path .gitignore",
"lint": "pnpm run lint:script && pnpm run lint:style",
"lintfix": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --fix",
"lintfix:script": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore",
"lintfix:style": "stylelint --fix **/*.{css,scss,vue} --ignore-path .gitignore",
"lintfix": "pnpm run lintfix:script && pnpm run lintfix:style",
"test": "jest",
"do-dev": "pnpm run dev",
"do-build-prod": "pnpm run generate",