Skip to content

Commit e3ec5e7

Browse files
authored
Update outdated packages (#5)
1 parent 436924e commit e3ec5e7

File tree

12 files changed

+2936
-2091
lines changed

12 files changed

+2936
-2091
lines changed

Diff for: .babelrc

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
{
2-
"presets": [
3-
["env", {
4-
"targets": {
5-
"node": "6"
6-
}
7-
}]
8-
],
9-
"plugins": [
10-
"transform-object-rest-spread"
11-
]
12-
}
2+
"presets": ["@babel/preset-env"],
3+
"plugins": ["@babel/plugin-proposal-object-rest-spread"]
4+
}

Diff for: .eslintrc.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = {
2-
extends: ['standard', 'prettier'],
3-
plugins: ['prettier'],
2+
extends: ["standard", "prettier"],
3+
plugins: ["prettier"],
44
rules: {
5-
'prettier/prettier': 'error'
5+
"prettier/prettier": "error"
66
},
77
env: { mocha: true }
8-
}
8+
};

Diff for: .github/FUNDING.yml

-2
This file was deleted.

Diff for: .stylelintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"extends": [ "stylelint-config-standard", "stylelint-config-recess-order" ]
3-
}
3+
}

Diff for: ava.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
serial: true,
3+
verbose: true,
4+
require: ["@babel/register", "./test/_setup"],
5+
babel: true
6+
};

Diff for: nodemon.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
22
"exec": "babel-node",
3-
"ignore": [
4-
"src/app/**/*",
5-
"src/daemon/public/**/*"
6-
]
3+
"ignore": ["src/app/**/*", "src/daemon/public/**/*"]
74
}

0 commit comments

Comments
 (0)