-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Update Dash dependencies #1367
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
Update Dash dependencies #1367
Changes from 4 commits
19ca993
987c83e
f8b2a46
27c88f9
d06f14c
d608edb
cf96606
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 |
---|---|---|
|
@@ -70,6 +70,7 @@ disable=invalid-name, | |
long-suffix, | ||
old-ne-operator, | ||
old-octal-literal, | ||
import-outside-toplevel, | ||
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. Was previously ignored |
||
import-star-module-level, | ||
non-ascii-bytes-literal, | ||
raw-checker-failed, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"tabWidth": 4, | ||
"singleQuote": true, | ||
"arrowParens": "avoid", | ||
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. Default changed |
||
"bracketSpacing": false, | ||
"trailingComma": "es5" | ||
"trailingComma": "none" | ||
} |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,10 @@ | |
"scripts": { | ||
"prepublishOnly": "rm -rf lib && babel src --extensions=\".ts,.tsx,.js,.jsx\" --out-dir lib --copy-files", | ||
"private::format.js-eslint": "eslint --quiet --fix .", | ||
"private::format.js-prettier": "prettier --config .prettierrc --write \"src/**/*.js\"", | ||
"private::format.js-prettier": "prettier --config .prettierrc --write \"src/**/*.(js|ts|tsx)\"", | ||
"private::format.ts": "tslint --fix --project tsconfig.json --config tslint.json", | ||
"private::lint.js-eslint": "eslint .", | ||
"private::lint.js-prettier": "prettier --config .prettierrc \"src/**/*.js\" --list-different", | ||
"private::lint.js-prettier": "prettier --config .prettierrc \"src/**/*.(js|ts|tsx)\" --list-different", | ||
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. Apply Prettier to TypeScript files too. |
||
"private::lint.ts": "tslint --project tsconfig.json --config tslint.json", | ||
"build:js": "webpack --build release", | ||
"build:dev": "webpack --build local", | ||
|
@@ -24,63 +24,63 @@ | |
"author": "chriddyp", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@babel/polyfill": "7.8.7", | ||
"@babel/polyfill": "^7.10.4", | ||
"@plotly/dash-component-plugins": "^1.2.0", | ||
"cookie": "^0.4.0", | ||
"cookie": "^0.4.1", | ||
"dependency-graph": "^0.9.0", | ||
"fast-isnumeric": "^1.1.3", | ||
"fast-isnumeric": "^1.1.4", | ||
"prop-types": "15.7.2", | ||
"radium": "^0.26.0", | ||
"ramda": "^0.27.0", | ||
"react": "16.13.0", | ||
"react-dom": "16.13.0", | ||
"react-redux": "^7.2.0", | ||
"ramda": "^0.27.1", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"react-redux": "^7.2.1", | ||
"redux": "^4.0.5", | ||
"redux-actions": "^2.6.5", | ||
"redux-thunk": "^2.3.0", | ||
"viz.js": "2.1.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.10.3", | ||
"@babel/core": "^7.10.3", | ||
"@babel/plugin-proposal-class-properties": "^7.10.1", | ||
"@babel/plugin-transform-modules-commonjs": "^7.10.1", | ||
"@babel/preset-env": "^7.10.3", | ||
"@babel/preset-react": "^7.10.1", | ||
"@babel/preset-typescript": "^7.10.1", | ||
"@svgr/webpack": "^5.2.0", | ||
"@babel/cli": "^7.10.5", | ||
"@babel/core": "^7.11.1", | ||
"@babel/plugin-proposal-class-properties": "^7.10.4", | ||
"@babel/plugin-transform-modules-commonjs": "^7.10.4", | ||
"@babel/preset-env": "^7.11.0", | ||
"@babel/preset-react": "^7.10.4", | ||
"@babel/preset-typescript": "^7.10.4", | ||
"@svgr/webpack": "^5.4.0", | ||
"@types/ramda": "^0.27.6", | ||
"@types/react": "^16.9.34", | ||
"@types/react-redux": "^7.1.7", | ||
"@types/react": "^16.9.46", | ||
"@types/react-redux": "^7.1.9", | ||
"@types/redux": "^3.6.0", | ||
"@types/redux-actions": "^2.6.1", | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.0.6", | ||
"babel-loader": "^8.1.0", | ||
"css-loader": "^3.4.2", | ||
"es-check": "^5.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-airbnb": "^18.0.1", | ||
"eslint-config-prettier": "^6.10.0", | ||
"eslint-plugin-import": "^2.20.1", | ||
"eslint-plugin-jsx-a11y": "^6.2.3", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"eslint-plugin-react": "^7.18.3", | ||
"jest": "^25.1.0", | ||
"eslint": "^7.6.0", | ||
"eslint-config-airbnb": "^18.2.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-import": "^2.22.0", | ||
"eslint-plugin-jsx-a11y": "^6.3.1", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"eslint-plugin-react": "^7.20.6", | ||
"jest": "^26.4.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^1.19.1", | ||
"prettier-eslint": "^9.0.1", | ||
"prettier": "^2.0.5", | ||
"prettier-eslint": "^11.0.0", | ||
"prettier-eslint-cli": "^5.0.0", | ||
"prettier-stylelint": "^0.4.2", | ||
"style-loader": "^1.1.3", | ||
"ts-jest": "^26.0.0", | ||
"ts-loader": "^7.0.2", | ||
"tslint": "^6.1.2", | ||
"typescript": "^3.8.3", | ||
"webpack": "^4.42.0", | ||
"webpack-cli": "^3.3.11", | ||
"webpack-dev-server": "^3.10.3", | ||
"style-loader": "^1.2.1", | ||
"ts-jest": "^26.2.0", | ||
"ts-loader": "^8.0.2", | ||
"tslint": "^6.1.3", | ||
"typescript": "^3.9.7", | ||
"webpack": "^4.44.1", | ||
"webpack-cli": "^3.3.12", | ||
"webpack-dev-server": "^3.11.0", | ||
"webpack-serve": "^3.2.0", | ||
"whatwg-fetch": "^3.0.0" | ||
"whatwg-fetch": "^3.4.0" | ||
}, | ||
"files": [ | ||
"/dash_renderer/*{.js,.map}", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,5 +30,3 @@ AppProvider.defaultProps = { | |
}; | ||
|
||
export default AppProvider; | ||
|
||
|
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.
Run against the modified branches of Core components