missing changes

This commit is contained in:
Ulf Gebhardt 2023-11-21 00:18:38 +01:00
parent 68163e5a98
commit 9d346c8685
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 28 additions and 26 deletions

View File

@ -32,7 +32,7 @@ This projects utilizes `storybook` to develop frontend components and `vuepress`
The following commands are available: The following commands are available:
| Command | Description | | Command | Description |
|----------------------------|-------------------------------------------------| |-----------------------------|-------------------------------------------------|
| `npm install` | Project setup | | `npm install` | Project setup |
| `npm run build` | Compiles and minifies for production | | `npm run build` | Compiles and minifies for production |
| `npm run server:prod` | Runs productions server | | `npm run server:prod` | Runs productions server |

View File

@ -40,8 +40,9 @@
"storybook": "storybook dev -p 6006", "storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o build/storybook", "storybook:build": "storybook build -o build/storybook",
"storybook:test": "test-storybook", "storybook:test": "test-storybook",
"test:lint": "npm run test:lint:eslint && npm run test:lint:remark && npm run test:lint:style", "test:lint": "npm run test:lint:eslint && npm run test:lint:remark && npm run test:lint:style && npm run test:lint:locales",
"test:lint:eslint": "eslint --ext .vue,.ts,.tsx,.js,.jsx,.json,.yml,.yaml --max-warnings 0 --ignore-path .gitignore .", "test:lint:eslint": "eslint --ext .vue,.ts,.tsx,.js,.jsx,.json,.yml,.yaml --max-warnings 0 --ignore-path .gitignore .",
"test:lint:locales": "scripts/locales/locales.sh src/locales",
"test:lint:remark": "remark . --quiet --frail", "test:lint:remark": "remark . --quiet --frail",
"test:lint:style": "stylelint --max-warnings 0 --ignore-path .gitignore \"**/*.{css,scss,vue,vuex}\"", "test:lint:style": "stylelint --max-warnings 0 --ignore-path .gitignore \"**/*.{css,scss,vue,vuex}\"",
"test:unit": "npm run test:unit:dev -- run --coverage", "test:unit": "npm run test:unit:dev -- run --coverage",

View File

@ -8,7 +8,8 @@
"lib": ["DOM", "DOM.Iterable", "ESNext"], "lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client"], "types": ["vite/client"],
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true "esModuleInterop": true,
"resolveJsonModule": true
}, },
"ts-node": { "ts-node": {
"transpileOnly": true, "transpileOnly": true,