Skip to content

Commit bc43258

Browse files
committed
feat: update deps and close react-dropzone#887
BREAKING CHANGE Users will need to take care of polyfilling for the final bundle output as the core-js import from attr-accept has been removed.
1 parent cc9859e commit bc43258

File tree

6 files changed

+22899
-2408
lines changed

6 files changed

+22899
-2408
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dist/
22
coverage/
33
typings/*
4+
styleguide/*
45
!.babelrc.js

.eslintrc

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
{
2-
"extends": ["okonet/node"],
2+
"parser": "babel-eslint",
3+
"parserOptions": {
4+
"ecmaVersion": 2017,
5+
"sourceType": "module"
6+
},
7+
"env": {
8+
"es6": true,
9+
"node": true,
10+
"jest": true
11+
},
12+
"plugins": [
13+
"import",
14+
"node",
15+
"prettier"
16+
],
17+
"extends": [
18+
// TODO: Fix this so we can use
19+
// "okonet/node"
20+
"eslint:recommended",
21+
"prettier"
22+
],
323
"rules": {
424
"strict": 0,
525
"node/no-unpublished-require": 0,

0 commit comments

Comments
 (0)