Skip to content

Commit

Permalink
Merge pull request graphql#147 from wincent/glh/dev-deps
Browse files Browse the repository at this point in the history
Fix a couple of issues with dev dependencies
  • Loading branch information
wincent authored Aug 16, 2017
2 parents 0a89b6e + 86f6c99 commit 94cb7d4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions packages/graphql-language-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,5 @@
"graphql-language-service-server": "^0.1.7",
"graphql-language-service-utils": "^0.1.7",
"yargs": "^3.32.0 || ^7.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1"
}
}
3 changes: 0 additions & 3 deletions packages/interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,5 @@
"graphql-language-service-parser": "^0.1.5",
"graphql-language-service-types": "^0.1.5",
"graphql-language-service-utils": "^0.1.7"
},
"devDependencies": {
"babel-cli": "6.24.1"
}
}
2 changes: 1 addition & 1 deletion resources/checkDependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const versions = {};

let conflictCount = 0;
Object.keys(versions).forEach(pkg => {
versionRanges = Object.keys(versions[pkg]);
const versionRanges = Object.keys(versions[pkg]);
if (versionRanges.length > 1) {
conflictCount++;
print(`${BOLD}${YELLOW}Package versions for ${pkg} do not match:${RESET}`);
Expand Down

0 comments on commit 94cb7d4

Please sign in to comment.