fix: issue with prod-lint in hopp-app on windows

This commit is contained in:
Andrew Bastin
2022-09-30 19:06:20 +05:30
parent 938f940f90
commit a6b91c435c
2 changed files with 20 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
"dev:gql-codegen": "graphql-codegen --config gql-codegen.yml --watch",
"build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
"lint": "eslint src --ext .ts,.js,.vue --ignore-path .gitignore .",
"prod-lint": "HOPP_LINT_FOR_PROD=true pnpm run lint",
"prod-lint": "cross-env HOPP_LINT_FOR_PROD=true pnpm run lint",
"lintfix": "eslint --fix src --ext .ts,.js,.vue --ignore-path .gitignore .",
"generate": "pnpm run build",
"preview": "vite preview",
@@ -125,6 +125,7 @@
"@vue/compiler-sfc": "^3.2.39",
"@vue/eslint-config-typescript": "^11.0.1",
"@vue/runtime-core": "^3.2.39",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.4.0",