diff options
author | Claudius Coenen | 2019-01-23 23:32:15 +0100 |
---|---|---|
committer | Claudius Coenen | 2019-01-23 23:37:13 +0100 |
commit | fa0dea0a1b192ddff54fff5b46df930fd3d12195 (patch) | |
tree | 7ed9a55a66eb3dcce71f171b4b8b3f0aec5f4a26 | |
parent | a9d12e3a28f5181907d0d8345647b0bdf9654165 (diff) |
Fixing deep dependency problem with node 6.x
this commit has been blatantly stolen from @samselikoff in ember-cli-addon-docs. It prevents an issue introduced via a deep dependency that no longer supports node 6 (which we still would like to support).
see: https://github.com/ember-learn/ember-cli-addon-docs/commit/231275b5a4bed59bbac798ddaa1bde94319047cb
see: https://github.com/salesforce/tough-cookie/pull/141
Signed-off-by: Claudius Coenen <opensource@amenthes.de>
-rw-r--r-- | package.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package.json b/package.json index 0231064f..8f7b1363 100644 --- a/package.json +++ b/package.json @@ -132,6 +132,9 @@ "ws": "^6.0.0", "xss": "^1.0.3" }, + "resolutions": { + "**/tough-cookie": "~2.4.0" + }, "engines": { "node": ">=6.x" }, |