Skip to content

Commit 3cc4118

Browse files
author
Dimitri Kopriwa
committed
fix(dependencies): upgrade all dependencies
1 parent 15b2cef commit 3cc4118

File tree

4 files changed

+32
-156
lines changed

4 files changed

+32
-156
lines changed

.ncurc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const { createConfig } = require('@rollup-umd/ncu');
2+
module.exports = createConfig();

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ rollup.config.js
3232
/*.tgz
3333
/lib/**/*.md
3434
internals
35+
**/tests/*.test.js
36+
.ncurc.js

debug.json

Lines changed: 0 additions & 136 deletions
This file was deleted.

package.json

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,15 @@
4141
"react",
4242
"yeutech.vn",
4343
"react",
44-
"admin"
44+
"admin",
45+
"ncu",
46+
"@rollup-umd/ncu"
4547
],
48+
"ncurc": {
49+
"reject": [
50+
"ra-core"
51+
]
52+
},
4653
"license": "MIT",
4754
"eslintConfig": {
4855
"parser": "babel-eslint",
@@ -157,25 +164,26 @@
157164
],
158165
"devDependencies": {
159166
"@babel/cli": "^7.2.3",
160-
"@babel/core": "^7.2.2",
167+
"@babel/core": "^7.3.4",
161168
"@babel/plugin-external-helpers": "^7.2.0",
162-
"@babel/plugin-proposal-class-properties": "^7.3.0",
169+
"@babel/plugin-proposal-class-properties": "^7.3.4",
163170
"@babel/plugin-proposal-decorators": "^7.3.0",
164171
"@babel/plugin-proposal-json-strings": "^7.2.0",
165-
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
172+
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
166173
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
167174
"@babel/plugin-syntax-import-meta": "^7.2.0",
168-
"@babel/plugin-transform-async-to-generator": "^7.2.0",
175+
"@babel/plugin-transform-async-to-generator": "^7.3.4",
169176
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
170177
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
171178
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
172-
"@babel/plugin-transform-runtime": "^7.2.0",
179+
"@babel/plugin-transform-runtime": "^7.3.4",
173180
"@babel/polyfill": "^7.2.5",
174-
"@babel/preset-env": "^7.3.1",
181+
"@babel/preset-env": "^7.3.4",
175182
"@babel/preset-react": "^7.0.0",
176183
"@bootstrap-styled/documentation": "^1.2.4",
177-
"@bootstrap-styled/ra-ui": "^1.0.13",
178-
"@rollup-umd/documentation": "^1.3.13",
184+
"@bootstrap-styled/ra-ui": "^1.0.16",
185+
"@rollup-umd/documentation": "^1.3.16",
186+
"@rollup-umd/ncu": "^1.0.3",
179187
"@semantic-release/changelog": "^3.0.2",
180188
"@semantic-release/git": "^7.0.8",
181189
"@semantic-release/github": "^5.2.10",
@@ -192,10 +200,10 @@
192200
"babel-plugin-react-transform": "^3.0.0",
193201
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
194202
"cz-conventional-changelog": "^2.1.0",
195-
"enzyme": "^3.8.0",
196-
"enzyme-adapter-react-16": "^1.9.1",
197-
"es6-promise": "^4.2.5",
198-
"eslint": "^5.13.0",
203+
"enzyme": "^3.9.0",
204+
"enzyme-adapter-react-16": "^1.10.0",
205+
"es6-promise": "^4.2.6",
206+
"eslint": "^5.15.0",
199207
"eslint-config-airbnb": "^17.1.0",
200208
"eslint-plugin-import": "^2.16.0",
201209
"eslint-plugin-jsx-a11y": "^6.2.1",
@@ -205,26 +213,26 @@
205213
"istanbul-reports": "^2.1.0",
206214
"jest-cli": "^24.1.0",
207215
"jest-sonar-reporter": "^2.0.0",
208-
"lint-staged": "^8.1.3",
216+
"lint-staged": "^8.1.5",
209217
"pre-commit": "^1.2.2",
210218
"ra-core": "^2.6.4",
211219
"raf": "^3.4.1",
212-
"react": "^16.8.1",
213-
"react-dom": "^16.8.1",
220+
"react": "^16.8.3",
221+
"react-dom": "^16.8.3",
214222
"react-styleguidist": "^8.0.6",
215223
"react-test-renderer": "^16.8.1",
216224
"semantic-release": "^15.13.3",
217225
"toctoc": "^0.3.2",
218-
"webpack": "^4.29.3"
226+
"webpack": "^4.29.6"
219227
},
220228
"dependencies": {
221229
"prop-types": "^15.7.2"
222230
},
223231
"peerDependencies": {
224-
"react": "^16.8.1",
225-
"react-dom": "^16.8.1",
232+
"react": "^16.8.3",
233+
"react-dom": "^16.8.3",
226234
"ra-core": "^2.6.4",
227-
"@bootstrap-styled/ra-ui": "^1.0.13"
235+
"@bootstrap-styled/ra-ui": "^1.0.16"
228236
},
229237
"publishConfig": {
230238
"registry": "https://registry.npmjs.org",

0 commit comments

Comments
 (0)