-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump dev dependencies #1955
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,8 @@ | |
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.7.2", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4", | ||
"@babel/plugin-proposal-optional-chaining": "^7.6.0", | ||
"@babel/preset-typescript": "^7.7.2", | ||
"@types/cross-spawn": "^6.0.1", | ||
"@types/express": "^4.17.1", | ||
|
@@ -41,30 +43,25 @@ | |
"@types/webpack": "^4.32.0", | ||
"@types/webpack-dev-server": "^3.1.5", | ||
"@types/webpack-merge": "^4.1.5", | ||
"babel-eslint": "8", | ||
"enzyme": "^3.9.0", | ||
"enzyme-adapter-react-16": "^1.12.1", | ||
"eslint": "4.x", | ||
"eslint-config-airbnb": "17.1.0", | ||
"eslint-config-prettier": "^2.9.0", | ||
"babel-eslint": "^10.0.3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't know why its been so long since last bump :o |
||
"enzyme": "^3.10.0", | ||
"enzyme-adapter-react-16": "^1.15.1", | ||
"eslint": "^6.6.0", | ||
"eslint-config-airbnb": "^18.0.1", | ||
"eslint-config-prettier": "^6.5.0", | ||
"eslint-plugin-header": "^3.0.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.3", | ||
"eslint-plugin-react": "^7.11.1", | ||
"eslint-plugin-react-hooks": "^0.0.0", | ||
"filepath": "^1.1.0", | ||
"front-matter": "^2.3.0", | ||
"glob-promise": "^3.3.0", | ||
"husky": "^1.3.1", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-jsx-a11y": "^6.2.3", | ||
"eslint-plugin-react": "^7.16.0", | ||
"eslint-plugin-react-hooks": "^2.2.0", | ||
"husky": "^3.0.9", | ||
"jest": "^24.9.0", | ||
"lerna": "^3.18.1", | ||
"lerna-changelog": "^0.8.2", | ||
"lint-staged": "^7.2.0", | ||
"picomatch": "^2.1.0", | ||
"prettier": "^1.18.2", | ||
"prettier": "^1.19.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TS 3.7 support |
||
"react": "^16.8.4", | ||
"react-dom": "^16.8.4", | ||
"rimraf": "^2.6.3", | ||
"typescript": "^3.7.2" | ||
}, | ||
"lint-staged": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,10 @@ module.exports = { | |
'react/button-has-type': OFF, // 1 | ||
'react/forbid-prop-types': OFF, // 1 | ||
'react/require-default-props': OFF, // 1 | ||
'jsx-a11y/control-has-associated-label': OFF, // 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some of the eslint plugins are updated and stricter. So turning it off |
||
'react/jsx-props-no-spreading': OFF, // 2 | ||
'max-classes-per-file': OFF, // 2 | ||
'prefer-object-spread': OFF, // 5 | ||
'jsx-a11y/anchor-is-valid': OFF, // 9 | ||
'import/no-unresolved': OFF, // 15 | ||
'react/prefer-stateless-function': OFF, // 22 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,5 +75,11 @@ | |
"tiny-lr": "^1.1.1", | ||
"tree-node-cli": "^1.2.5", | ||
"truncate-html": "^1.0.3" | ||
}, | ||
"devDependencies": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All of this is specific to v1 only |
||
"filepath": "^1.1.0", | ||
"front-matter": "^2.3.0", | ||
"glob-promise": "^3.3.0", | ||
"rimraf": "^2.6.3" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise jest won't be able to handle TS 3.7 nullish and optional chaining later on. (babel-preset-typescript doesnt include that)