Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions guides/release/tutorial/part-1/orientation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ To verify that your installation was successful, run:

```shell
$ ember --version
ember-cli: 6.10.0
node: 20.20.0
ember-cli: 6.12.0
node: 20.20.2
os: linux x64
```

Expand Down Expand Up @@ -66,7 +66,7 @@ Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-renta
create config/environment.js
create config/optional-features.json
create config/targets.js
create ember-cli-build.js
create ember-cli-build.mjs
create eslint.config.mjs
create .gitignore
create index.html
Expand Down Expand Up @@ -143,12 +143,12 @@ super-rentals
│ │ ├── vendor.css
│ │ └── vendor.js
│ ├── assets
│ │ ├── app-BQizcYp5.js
│ │ ├── app-BISwlnwN.js
│ │ ├── app-BsLReVUA.css
│ │ ├── main-BrJmI0E2.js
│ │ ├── modules-4-12-1Tpr-lU6.js
│ │ ├── tests-Bfhe-jay.js
│ │ └── tests-CFFHI-JI.css
│ │ ├── main-CDDwmLqn.js
│ │ ├── modules-4-12-BSDS5iUo.js
│ │ ├── tests-CFFHI-JI.css
│ │ └── tests-DQRpglZe.js
│ ├── ember-welcome-page
│ │ └── construction.png
│ ├── tests
Expand Down Expand Up @@ -182,7 +182,7 @@ super-rentals
├── .watchmanconfig
├── README.md
├── babel.config.mjs
├── ember-cli-build.js
├── ember-cli-build.mjs
├── eslint.config.mjs
├── index.html
├── package.json
Expand Down Expand Up @@ -217,11 +217,11 @@ Build successful (9761ms)

Slowest Nodes (totalTime >= 5%) | Total (avg)
-+-
Babel: @embroider/macros (1) | 417ms
Babel: @embroider/macros (1) | 328ms



VITE v7.3.1 ready in 3542 ms
VITE v7.3.2 ready in 3171 ms

➜ Local: http://localhost:4200/
```
Expand Down
4 changes: 2 additions & 2 deletions guides/release/tutorial/part-1/reusable-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ Build successful (13286ms)

Slowest Nodes (totalTime >= 5%) | Total (avg)
-+-
Babel: @embroider/macros (1) | 432ms
Babel: @embroider/macros (1) | 332ms



VITE v7.3.1 ready in 3695 ms
VITE v7.3.2 ready in 3164 ms

➜ Local: http://localhost:4200/
```
Expand Down
8 changes: 4 additions & 4 deletions public/downloads/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* stylelint-disable no-descending-specificity, media-feature-range-notation */
@import url('https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700,700italic');
@import url("https://fonts.googleapis.com/css?family=Lato:300,300italic,400,700,700italic");

/**
* Base Elements
Expand All @@ -23,7 +23,7 @@ span,
a,
button {
font-family:
Lato, 'Open Sans', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial,
Lato, "Open Sans", "Helvetica Neue", "Segoe UI", Helvetica, Arial,
sans-serif;
line-height: 1.5;
}
Expand Down Expand Up @@ -272,7 +272,7 @@ p {
}

.rental button.image::after {
content: '';
content: "";
position: absolute;
top: 0;
left: 0;
Expand Down Expand Up @@ -460,7 +460,7 @@ p {
}

.tomster {
background: url('../assets/images/teaching-tomster.png');
background: url("../assets/images/teaching-tomster.png");
background-size: contain;
background-repeat: no-repeat;
height: 200px;
Expand Down
Loading