Skip to content

Commit 3701439

Browse files
authored
Feature/1019 update dependencies (#46)
* chore: update library (dev)Dependencies * chore: update ESLint packages, fix linting errors * chore: update example (dev)Dependencies
1 parent b16475d commit 3701439

8 files changed

Lines changed: 4970 additions & 5530 deletions

File tree

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
'jest/prefer-strict-equal': 'error',
1111
'no-underscore-dangle': 0,
1212
'sort-keys': 0,
13+
'react/jsx-props-no-spreading': 0,
1314
'react/prop-types': 0,
1415
'react-hooks/rules-of-hooks': 'error',
1516
'react-hooks/exhaustive-deps': 'error',
@@ -19,6 +20,7 @@ module.exports = {
1920
files: ['*.test.js'],
2021
rules: {
2122
'import/no-extraneous-dependencies': 0,
23+
'max-classes-per-file': 0,
2224
'no-console': 0,
2325
},
2426
},

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.16
1+
12.12

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
"options": {
1010
"printWidth": 1000
1111
}
12+
},
13+
{
14+
"files": "*.yml",
15+
"options": {
16+
"singleQuote": false
17+
}
1218
}
1319
]
1420
}

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: node_js
22

33
node_js:
4-
- "8"
5-
- "10"
4+
- "node"
65

76
script:
87
- npm run test

example/package-lock.json

Lines changed: 457 additions & 335 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,28 @@
3232
"babel-core": "6.x || ^7.0.0-bridge.0"
3333
},
3434
"dependencies": {
35-
"@babel/register": "^7.5.5",
36-
"dotenv": "^8.0.0",
35+
"@babel/register": "^7.6.2",
36+
"dotenv": "^8.2.0",
3737
"hapi": "^18.1.0",
3838
"inert": "^5.1.3",
3939
"react": "^16.8.6",
4040
"react-component-catalog": "file:..",
4141
"react-dom": "^16.8.6"
4242
},
4343
"devDependencies": {
44-
"@babel/cli": "7.5.5",
45-
"@babel/core": "7.5.5",
44+
"@babel/cli": "7.6.4",
45+
"@babel/core": "7.6.4",
4646
"@babel/plugin-proposal-class-properties": "7.5.5",
47-
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
48-
"@babel/polyfill": "7.4.4",
49-
"@babel/preset-env": "7.5.5",
50-
"@babel/preset-react": "7.0.0",
47+
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
48+
"@babel/polyfill": "7.6.0",
49+
"@babel/preset-env": "7.6.3",
50+
"@babel/preset-react": "7.6.3",
5151
"babel-core": "7.0.0-bridge.0",
5252
"babel-loader": "8.0.6",
5353
"babel-plugin-dev-expression": "^0.2.2",
54-
"nodemon": "1.19.1",
55-
"rimraf": "2.6.3",
56-
"webpack": "4.36.1",
57-
"webpack-cli": "3.3.6"
54+
"nodemon": "1.19.4",
55+
"rimraf": "3.0.0",
56+
"webpack": "4.41.2",
57+
"webpack-cli": "3.3.9"
5858
}
5959
}

0 commit comments

Comments
 (0)