Skip to content

Commit

Permalink
updated eslint devDependency to 6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
e2tha-e committed Sep 26, 2019
1 parent af52f87 commit 9cbfed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions import~extend.js
Expand Up @@ -427,13 +427,7 @@ function exportBackendFile(argv) {
}

// All types except templates.
for (let i in targetDirDefaults) {
/* istanbul ignore if */
if (!targetDirDefaults.hasOwnProperty(i)) {
continue;
}

const type = i;
for (let type of Object.keys(targetDirDefaults)) {
const sourceDirDefault = sourceDirDefaults[type];
const sourceExtDefault = sourceExtDefaults[type];
const targetDirDefault = targetDirDefaults[type];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -54,7 +54,7 @@
"chai": "4.x",
"coveralls": "3.x",
"diveSync": "^0.3.0",
"eslint": "5.x",
"eslint": "6.x",
"fepper": "*",
"gulp": "https://github.com/electric-eloquence/gulp/tarball/v3-lts",
"husky": "1.x",
Expand Down

0 comments on commit 9cbfed7

Please sign in to comment.