fix: lint script not working on Windows

This commit is contained in:
Sajad Hashemian 2022-02-26 15:06:17 +03:30
parent 0f13a6a78f
commit 59fea5acaf
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
"serve": "vite preview",
"lint:script": "eslint \"{src/**/*.{ts,vue},cypress/**/*.js}\"",
"lint:tsc": "vue-tsc --noEmit",
"lint": "concurrently 'yarn build' 'yarn lint:tsc' 'yarn lint:script'",
"lint": "concurrently \"yarn build\" \"yarn lint:tsc\" \"yarn lint:script\"",
"test:unit": "jest",
"test:e2e": "yarn build && concurrently -rk -s first \"yarn serve\" \"cypress run -c baseUrl=http://localhost:5000\"",
"test:e2e:ci": "cypress run -C cypress.prod.json",