Skip to content

Commit b029d02

Browse files
committed
Update dev-dependencies
1 parent b312266 commit b029d02

File tree

4 files changed

+2334
-2089
lines changed

4 files changed

+2334
-2089
lines changed

.eslintrc.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module.exports = {
22
extends: [
3-
'airbnb-base'
3+
'airbnb-base',
44
],
55
parser: 'babel-eslint',
66
env: {
7-
es6: true
7+
es6: true,
88
},
99
overrides: [{
1010
files: ['*.test.*'],
1111
env: {
12-
jest: true
13-
}
12+
jest: true,
13+
},
1414
}, {
1515
files: ['src/*'],
1616
env: {
17-
browser: true
17+
browser: true,
1818
},
1919
}],
2020
rules: {

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@
3636
"devDependencies": {
3737
"@babel/core": "^7.0.0",
3838
"@babel/preset-env": "^7.0.0",
39+
"@rollup/plugin-babel": "^5.0.0",
3940
"babel-eslint": "^10.0.0",
40-
"babel-jest": "^25.0.0",
41-
"eslint": "^6.0.0",
42-
"eslint-config-airbnb-base": "^13.0.0",
41+
"babel-jest": "^26.0.0",
42+
"eslint": "^7.0.0",
43+
"eslint-config-airbnb-base": "^14.0.0",
4344
"eslint-plugin-import": "^2.0.0",
4445
"glob": "^7.0.0",
45-
"jest-cli": "^25.0.0",
46-
"remark-cli": "^7.0.0",
47-
"remark-preset-wooorm": "^6.0.0",
48-
"rollup": "^1.0.0",
49-
"rollup-plugin-babel": "^4.0.0"
46+
"jest-cli": "^26.0.0",
47+
"remark-cli": "^8.0.0",
48+
"remark-preset-wooorm": "^7.0.0",
49+
"rollup": "^2.0.0"
5050
},
5151
"scripts": {
5252
"build": "rollup -c",
53-
"lint": "remark . -qfo && eslint .",
53+
"lint": "remark . -qfo && eslint . --fix",
5454
"test": "jest",
5555
"test:dev": "jest --watchAll"
5656
},

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import babel from 'rollup-plugin-babel';
1+
import babel from '@rollup/plugin-babel';
22
import pkg from './package.json';
33

44
export default {

0 commit comments

Comments
 (0)