Skip to content

Commit 3cd7874

Browse files
author
Ivelin Ivanov
authored
fix: upgrade vue and other 3rd party dependencies (#792)
Signed-off-by: ivelin <[email protected]>
1 parent f58b608 commit 3cd7874

File tree

4 files changed

+45473
-20964
lines changed

4 files changed

+45473
-20964
lines changed

.eslintrc.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ module.exports = {
66
},
77

88
extends: [
9-
'plugin:vue/strongly-recommended',
10-
'@vue/standard'
9+
'plugin:vue/strongly-recommended'
1110
],
1211

1312
rules: {
1413
'no-console': 'off',
15-
'no-debugger': 'off'
14+
'no-debugger': 'off',
15+
'vue/multi-word-component-names': 'off'
1616
},
1717

1818
parserOptions: {
19-
parser: 'babel-eslint'
19+
parser: '@babel/eslint-parser'
2020
},
2121

2222
overrides: [

jest.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
'^.+\\.js$': 'babel-jest',
1313
'.*\\.vue$': 'vue-jest'
1414
},
15+
transformIgnorePatterns: ["node_modules/(?!(konva)/)"],
1516
collectCoverage: true,
1617
coverageDirectory: './coverage/jest/',
1718
coverageReporters: ['json', 'text'],

0 commit comments

Comments
 (0)