Skip to content

Commit

Permalink
Update libraries. Code refactoring. Rename clearFilterOnClose to sear…
Browse files Browse the repository at this point in the history
…chClearOnClose
  • Loading branch information
maslianok committed Jan 30, 2017
1 parent 9b8f0db commit 4251481
Show file tree
Hide file tree
Showing 9 changed files with 8,441 additions and 236 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ Default: `undefined`
Default: `undefined`
###clearFilterOnClose: Bool
###searchClearOnClose: Bool
*Description: whether to clear the input on close or not*
Default: `true`
Expand Down
2 changes: 1 addition & 1 deletion internals/webpack/webpack.base.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = options => ({
loader: 'json-loader',
}, {
test: /\.js$/,
loader: 'babel',
loader: 'babel-loader',
exclude: /node_modules/,
query: options.babelQuery,
}, {
Expand Down
1 change: 0 additions & 1 deletion internals/webpack/webpack.dev.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const dllPlugin = pkg.dllPlugin;
const plugins = [
new DashboardPlugin(),
new webpack.HotModuleReplacementPlugin(), // Tell webpack we want hot reloading
new webpack.NoErrorsPlugin(),
new HtmlWebpackPlugin({
inject: true, // Inject all files that are generated by webpack, e.g. bundle.js
templateContent: templateContent(), // eslint-disable-line no-use-before-define
Expand Down
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"pretest": "npm run test:clean && npm run lint",
"test:clean": "rimraf ./coverage",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts -- . ",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts -- src ",
"lint:css": "stylelint ./src/**/*.css",
"test": "cross-env NODE_ENV=test jest --coverage",
"build": "npm run build:js && npm run build:css",
Expand Down Expand Up @@ -141,17 +141,17 @@
}
},
"dependencies": {
"react-addons-shallow-compare": "^15.3.0",
"react-virtualized": "^8.0.2",
"classnames": "^2.2.3",
"immutable": "^3.8.1",
"react": "^15.3.0",
"react-dom": "^15.3.0"
"react-addons-shallow-compare": "^15.4.2",
"react-dom": "^15.3.0",
"react-virtualized": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
Expand All @@ -167,51 +167,52 @@
"cheerio": "^0.22.0",
"compression": "^1.6.2",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"css-loader": "^0.25.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"enzyme": "^2.4.1",
"eslint": "^3.2.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.0.0",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.3",
"express": "^4.14.0",
"html-webpack-plugin": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"imports-loader": "^0.6.5",
"imports-loader": "^0.7.0",
"ip": "^1.1.3",
"jest-cli": "^15.1.1",
"jest-cli": "^18.1.0",
"json-loader": "^0.5.4",
"lint-staged": "^3.0.2",
"lodash": "^4.14.1",
"minimist": "^1.2.0",
"ngrok": "^2.2.2",
"postcss-cli": "^2.5.2",
"postcss-cssnext": "^2.7.0",
"postcss-loader": "^0.13.0",
"postcss-reporter": "^1.4.1",
"postcss-loader": "^1.2.2",
"postcss-reporter": "^3.0.0",
"pre-commit": "^1.1.3",
"psi": "^2.0.4",
"react-addons-test-utils": "^15.4.2",
"rimraf": "^2.5.4",
"shelljs": "^0.7.3",
"sinon": "^2.0.0-pre",
"style-loader": "^0.13.1",
"stylelint": "7.2.0",
"stylelint-config-standard": "^13.0.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"webpack": "^2.1.0-beta.21",
"webpack-dashboard": "^0.1.8",
"webpack-dashboard": "^0.3.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"peerDependencies": {
"classnames": "^2.2.3",
"immutable": "^3.8.1",
"react": "^0.14.0 || ^15.0.0",
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"react-virtualized": "^7.16.0 || ^8.0.0",
"immutable": "^3.8.1",
"classnames": "^2.2.3"
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0"
}
}
Loading

0 comments on commit 4251481

Please sign in to comment.