Skip to content

Commit

Permalink
Fix mysteriously broken frontend build by switching eslint parser dep.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 11, 2023
1 parent 49ec11c commit 62be5e2
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 22 deletions.
2 changes: 1 addition & 1 deletion frontend/.eslintrc.js
Expand Up @@ -8,7 +8,7 @@ module.exports = {
'@vue/airbnb',
],
parserOptions: {
parser: 'babel-eslint',
parser: '@babel/eslint-parser',
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
Expand Down
3 changes: 2 additions & 1 deletion frontend/package.json
Expand Up @@ -27,13 +27,14 @@
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-airbnb": "^5.3.0",
"babel-eslint": "^10.1.0",
"cypress": "10.10.0",
"cypress-file-upload": "^5.0.2",
"eslint": "^7.27.0",
Expand Down

0 comments on commit 62be5e2

Please sign in to comment.