From 86491808ee3957c667d0ba9a57a221b769470ff3 Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Fri, 29 Oct 2021 11:48:49 -0700 Subject: [PATCH] Use ember-data@4.1.0-alpha while waiting for backport https://github.com/emberjs/data/pull/7667 This is currently causing the build to fail since without this patch it triggers the ember implicit injection deprecation. --- src/markdown/tutorial/part-1/01-orientation.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/markdown/tutorial/part-1/01-orientation.md b/src/markdown/tutorial/part-1/01-orientation.md index aa456ba..e5283be 100644 --- a/src/markdown/tutorial/part-1/01-orientation.md +++ b/src/markdown/tutorial/part-1/01-orientation.md @@ -192,12 +192,26 @@ del package.json ``` + + +```run:command hidden=true cwd=super-rentals +#[cfg(unix)] +if $(ember --version | grep "ember-cli: 4.0.0"); then + yarn upgrade ember-data@~4.1.0-alpha.10 + git add yarn.lock +fi +``` + + + ```run:command hidden=true cwd=super-rentals yarn test git add app/index.html git add config/environment.js +git add package.json git add public/_redirects git add tests/index.html +git add yarn.lock git commit --amend --no-edit ```