From b71de3193dc9e25b419630640323302dc2e74fe4 Mon Sep 17 00:00:00 2001 From: Tomster Date: Wed, 25 Dec 2024 00:48:05 +0000 Subject: [PATCH] [CRON] Wednesday Dec 25, 2024 --- Commit: ember-learn/super-rentals-tutorial@9de8f5f791454f54e6bbb04422c5c6892590f084 Script: https://github.com/ember-learn/super-rentals-tutorial/blob/9de8f5f791454f54e6bbb04422c5c6892590f084/.github/workflows/build.yml Logs: https://github.com/ember-learn/super-rentals-tutorial/commit/9de8f5f791454f54e6bbb04422c5c6892590f084/checks --- guides/release/tutorial/part-1/orientation.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/guides/release/tutorial/part-1/orientation.md b/guides/release/tutorial/part-1/orientation.md index a095fefe73..bda5584577 100644 --- a/guides/release/tutorial/part-1/orientation.md +++ b/guides/release/tutorial/part-1/orientation.md @@ -24,7 +24,7 @@ To verify that your installation was successful, run: ```shell $ ember --version -ember-cli: 6.0.1 +ember-cli: 6.1.0 node: 18.20.5 os: linux x64 ``` @@ -38,13 +38,11 @@ We can create a new project using Ember CLI's `new` command. It follows the patt ```shell $ ember new super-rentals --lang en installing app -Ember CLI v6.0.1 +Ember CLI v6.1.0 Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-rentals-tutorial/dist/code/super-rentals: create .editorconfig create .ember-cli - create .eslintignore - create .eslintrc.js create .github/workflows/ci.yml create .prettierignore create .prettierrc.js @@ -53,6 +51,7 @@ Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-renta create .template-lintrc.js create .watchmanconfig create README.md + create /home/runner/work/super-rentals-tutorial/super-rentals-tutorial/dist/code/super-rentals/eslint.config.mjs create app/app.js create app/components/.gitkeep create app/controllers/.gitkeep @@ -144,8 +143,6 @@ super-rentals ├── .editorconfig ├── .ember-cli ├── .eslintcache -├── .eslintignore -├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js @@ -155,11 +152,12 @@ super-rentals ├── .watchmanconfig ├── README.md ├── ember-cli-build.js +├── eslint.config.mjs ├── package.json ├── package-lock.json └── testem.js -16 directories, 37 files +16 directories, 36 files ``` We'll learn about the purposes of these files and folders as we go. For now, just know that we'll spend most of our time working within the `app` folder.