Skip to content

Commit

Permalink
Use q-io@2 to exclude wrongly implemented "Array.prototype.find"-method
Browse files Browse the repository at this point in the history
This method is injected in the `collections`-package as array-shim, which is a dependency of q-io.
Version 1.x of `collections` implements the method with the semantics of `Array.prototype.findIndex`
instead. This leads to problems with other packages that rely on the implementation as defined in the ES6-Standard  See also: https://github.com/montagejs/collections/issues/139Use q-io@2 to exclude wrongly implemented "Array.prototype.find"-method  This method is injected in the `collections`-package as array-shim, which is a dependency of q-io. Version 1.x of `collections` implements the method with the semantics of `Array.prototype.findIndex` instead. This leads to problems with other packages that rely on the implementation as defined in the ES6-Standard  See also: montagejs/collections#139
  • Loading branch information
nknapp committed Jul 22, 2016
1 parent f803ea8 commit f84b188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"lodash.toarray": "^3.0.2",
"moment": "^2.11.1",
"q": "^1.4.1",
"q-io": "^1.13.2",
"q-io": "^2.0.6",
"semver": "^5.1.0"
},
"devDependencies": {
Expand All @@ -68,7 +68,7 @@
},
"config": {
"ghooks": {
"pre-commit": "thoughtful precommit && standard && thought run -a"
"pre-commit": "thoughtful precommit && standard"
}
},
"keywords": []
Expand Down

0 comments on commit f84b188

Please sign in to comment.