Skip to content

Commit 0e0e33d

Browse files
authored
Merge pull request #2189 from ember-learn/super-rentals-tutorial
Tutorial Updates
2 parents 1a3e261 + f2243cd commit 0e0e33d

3 files changed

Lines changed: 21 additions & 19 deletions

File tree

guides/release/tutorial/part-1/orientation.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ To verify that your installation was successful, run:
2424

2525
```shell
2626
$ ember --version
27-
ember-cli: 6.10.0
28-
node: 20.20.0
27+
ember-cli: 6.12.0
28+
node: 20.20.2
2929
os: linux x64
3030
```
3131

@@ -66,7 +66,7 @@ Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-renta
6666
create config/environment.js
6767
create config/optional-features.json
6868
create config/targets.js
69-
create ember-cli-build.js
69+
create ember-cli-build.mjs
7070
create eslint.config.mjs
7171
create .gitignore
7272
create index.html
@@ -143,12 +143,14 @@ super-rentals
143143
│ │ ├── vendor.css
144144
│ │ └── vendor.js
145145
│ ├── 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
152154
│ ├── ember-welcome-page
153155
│ │ └── construction.png
154156
│ ├── tests
@@ -182,15 +184,15 @@ super-rentals
182184
├── .watchmanconfig
183185
├── README.md
184186
├── babel.config.mjs
185-
├── ember-cli-build.js
187+
├── ember-cli-build.mjs
186188
├── eslint.config.mjs
187189
├── index.html
188190
├── package.json
189191
├── package-lock.json
190192
├── testem.cjs
191193
└── vite.config.mjs
192194
193-
26 directories, 57 files
195+
26 directories, 59 files
194196
```
195197

196198
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.
@@ -217,11 +219,11 @@ Build successful (9761ms)
217219

218220
Slowest Nodes (totalTime >= 5%) | Total (avg)
219221
-+-
220-
Babel: @embroider/macros (1) | 417ms
222+
Babel: @embroider/macros (1) | 330ms
221223

222224

223225

224-
VITE v7.3.1 ready in 3542 ms
226+
VITE v8.0.11 ready in 3171 ms
225227

226228
➜ Local: http://localhost:4200/
227229
```

guides/release/tutorial/part-1/reusable-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ Build successful (13286ms)
102102

103103
Slowest Nodes (totalTime >= 5%) | Total (avg)
104104
-+-
105-
Babel: @embroider/macros (1) | 432ms
105+
Babel: @embroider/macros (1) | 336ms
106106

107107

108108

109-
VITE v7.3.1 ready in 3695 ms
109+
VITE v8.0.11 ready in 3176 ms
110110

111111
➜ Local: http://localhost:4200/
112112
```

public/downloads/style.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* stylelint-disable no-descending-specificity, media-feature-range-notation */
2-
@import url('https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700,700italic');
2+
@import url("https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700,700italic");
33

44
/**
55
* Base Elements
@@ -23,7 +23,7 @@ span,
2323
a,
2424
button {
2525
font-family:
26-
Lato, 'Open Sans', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial,
26+
Lato, "Open Sans", "Helvetica Neue", "Segoe UI", Helvetica, Arial,
2727
sans-serif;
2828
line-height: 1.5;
2929
}
@@ -272,7 +272,7 @@ p {
272272
}
273273

274274
.rental button.image::after {
275-
content: '';
275+
content: "";
276276
position: absolute;
277277
top: 0;
278278
left: 0;
@@ -460,7 +460,7 @@ p {
460460
}
461461

462462
.tomster {
463-
background: url('../assets/images/teaching-tomster.png');
463+
background: url("../assets/images/teaching-tomster.png");
464464
background-size: contain;
465465
background-repeat: no-repeat;
466466
height: 200px;

0 commit comments

Comments
 (0)