From f7e1bace092d725c10fbbd65c1980e58ae4bfe02 Mon Sep 17 00:00:00 2001 From: Thomas Wang Date: Fri, 25 Oct 2019 21:42:01 -0700 Subject: [PATCH 1/2] Pin engine.io subdependency to avoid issues on Node 6 --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 01230945..7e08c904 100644 --- a/package.json +++ b/package.json @@ -82,6 +82,9 @@ "mocha": "^6.1.4", "typescript": "^3.5.2" }, + "resolutions": { + "**/engine.io": "~3.3.0" + }, "engines": { "node": "6.* || 8.* || >= 10" }, From bde8794f342e6cdcd5251c7dc99c6ed4523ec642 Mon Sep 17 00:00:00 2001 From: Thomas Wang Date: Fri, 25 Oct 2019 22:10:04 -0700 Subject: [PATCH 2/2] Use yarn in ember-try --- config/ember-try.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/ember-try.js b/config/ember-try.js index bd6ac466..e0ba4712 100644 --- a/config/ember-try.js +++ b/config/ember-try.js @@ -9,6 +9,7 @@ module.exports = function() { getChannelURL('canary') ]).then((urls) => { return { + useYarn: true, scenarios: [ { name: 'ember-lts-2.16', @@ -80,4 +81,4 @@ module.exports = function() { ] }; }); -}; \ No newline at end of file +};