Skip to content

Commit

Permalink
Merge pull request #534 from dplusic/bugfix/dep_missing
Browse files Browse the repository at this point in the history
Fix peer dep missing: eslint-plugin-import
  • Loading branch information
jhen0409 authored Nov 11, 2016
2 parents a32f416 + 180d92c commit c38be74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/main.development.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const installExtensions = async () => {
'REDUX_DEVTOOLS'
];
const forceDownload = !!process.env.UPGRADE_EXTENSIONS;
for (const name of extensions) {
for (const name of extensions) { // eslint-disable-line
try {
await installer.default(installer[name], forceDownload);
} catch (e) {} // eslint-disable-line
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@
"electron-builder": "^7.15.2",
"electron-devtools-installer": "^2.0.1",
"enzyme": "^2.5.1",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-flowtype-errors": "^1.5.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-react": "^6.6.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
Expand Down

0 comments on commit c38be74

Please sign in to comment.