Skip to content

Commit a1b6157

Browse files
committed
Fix version v4.9.0
1 parent 5652a14 commit a1b6157

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

guides/v4.9.0/tutorial/part-1/orientation.md

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

2525
```shell
2626
$ ember --version
27-
ember-cli: 4.5.0
27+
ember-cli: 4.6.0
2828
node: 14.19.1
2929
os: linux x64
3030
```
@@ -38,7 +38,7 @@ We can create a new project using Ember CLI's `new` command. It follows the patt
3838
```shell
3939
$ ember new super-rentals --lang en
4040
installing app
41-
Ember CLI v4.5.0
41+
Ember CLI v4.6.0
4242

4343
Creating a new Ember app in /home/runner/work/super-rentals-tutorial/super-rentals-tutorial/dist/code/super-rentals:
4444
create .editorconfig
@@ -165,10 +165,10 @@ We'll learn about the purposes of these files and folders as we go. For now, jus
165165

166166
## Starting and Stopping the Development Server
167167

168-
Ember CLI comes with a lot of different commands for a variety of development tasks, such as the `ember new` command that we saw earlier. It also comes with a _development server_, which we can launch with the `ember server` command:
168+
Ember CLI comes with a lot of different commands for a variety of development tasks, such as the `ember new` command that we saw earlier. It also comes with a _development server_, which we can launch with the `ember serve` command:
169169

170170
```shell
171-
$ ember server
171+
$ ember serve
172172
building...
173173

174174
Build successful (9761ms) – Serving on http://localhost:4200/
@@ -190,7 +190,7 @@ The development server is responsible for compiling our app and serving it to th
190190
</div>
191191
</div>
192192

193-
You can exit out of the development server at any time by typing `Ctrl + C` into the terminal window where `ember server` is running. That is, typing the "C" key on your keyboard _while_ holding down the "Ctrl" key at the same time. Once it has stopped, you can start it back up again with the same `ember server` command. We recommend having two terminal windows open: one to run the server in background, another to type other Ember CLI commands.
193+
You can exit out of the development server at any time by typing `Ctrl + C` into the terminal window where `ember serve` is running. That is, typing the "C" key on your keyboard _while_ holding down the "Ctrl" key at the same time. Once it has stopped, you can start it back up again with the same `ember server` command. We recommend having two terminal windows open: one to run the server in background, another to type other Ember CLI commands.
194194

195195
## Editing Files and Live Reload
196196

guides/v4.9.0/tutorial/part-1/reusable-components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ After saving the changes to our configuration file, we will need to restart our
9595

9696
<!-- TODO: https://github.com/ember-cli/ember-cli/issues/8782 -->
9797

98-
You can stop the server by finding the terminal window where `ember server` is running, then type `Ctrl + C`. That is, typing the "C" key on your keyboard _while_ holding down the "Ctrl" key at the same time. Once it has stopped, you can start it back up again with the same `ember server` command.
98+
You can stop the server by finding the terminal window where `ember serve` is running, then type `Ctrl + C`. That is, typing the "C" key on your keyboard _while_ holding down the "Ctrl" key at the same time. Once it has stopped, you can start it back up again with the same `ember server` command.
9999

100100
```shell
101-
$ ember server
101+
$ ember serve
102102
building...
103103

104104
Build successful (13286ms) – Serving on http://localhost:4200/

0 commit comments

Comments
 (0)