You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/release/tutorial/part-1/orientation.md
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ To verify that your installation was successful, run:
24
24
25
25
```shell
26
26
$ ember --version
27
-
ember-cli: 6.10.0
28
-
node: 20.20.0
27
+
ember-cli: 6.12.0
28
+
node: 20.20.2
29
29
os: linux x64
30
30
```
31
31
@@ -66,7 +66,7 @@ Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-renta
66
66
create config/environment.js
67
67
create config/optional-features.json
68
68
create config/targets.js
69
-
create ember-cli-build.js
69
+
create ember-cli-build.mjs
70
70
create eslint.config.mjs
71
71
create .gitignore
72
72
create index.html
@@ -143,12 +143,14 @@ super-rentals
143
143
│ │ ├── vendor.css
144
144
│ │ └── vendor.js
145
145
│ ├── assets
146
-
│ │ ├── app-BQizcYp5.js
147
-
│ │ ├── app-BsLReVUA.css
148
-
│ │ ├── main-BrJmI0E2.js
149
-
│ │ ├── modules-4-12-1Tpr-lU6.js
150
-
│ │ ├── tests-Bfhe-jay.js
151
-
│ │ └── tests-CFFHI-JI.css
146
+
│ │ ├── app-DgioD2rk.css
147
+
│ │ ├── app-kH0EqUK0.js
148
+
│ │ ├── dist-BUdT4Swa.js
149
+
│ │ ├── main-BINtkAbW.js
150
+
│ │ ├── manager-C2ILo-5D.js
151
+
│ │ ├── modules-4-12-BPXQYON-.js
152
+
│ │ ├── tests-BdSWFklr.css
153
+
│ │ └── tests-CIHkQsCT.js
152
154
│ ├── ember-welcome-page
153
155
│ │ └── construction.png
154
156
│ ├── tests
@@ -182,15 +184,15 @@ super-rentals
182
184
├── .watchmanconfig
183
185
├── README.md
184
186
├── babel.config.mjs
185
-
├── ember-cli-build.js
187
+
├── ember-cli-build.mjs
186
188
├── eslint.config.mjs
187
189
├── index.html
188
190
├── package.json
189
191
├── package-lock.json
190
192
├── testem.cjs
191
193
└── vite.config.mjs
192
194
193
-
26 directories, 57 files
195
+
26 directories, 59 files
194
196
```
195
197
196
198
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.
0 commit comments