Skip to content

Commit 1bf0cb7

Browse files
committed
Apply prose suggestions from PR feedback
1 parent 7b573a7 commit 1bf0cb7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

guides/appendix/live-reload.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Integrating with ember's live-reload system can be fairly straight-forward.
1+
For most JavaScript dependencies, installing them in your Ember app can be as quick as `npm install <some package name>`.
2+
However, there are some libraries within the JavaScript ecosystem that have additional tooling that needs to integrate
3+
with Ember's live-reload features for the best developer-experience. In this guide, you will learn how to install
4+
and configure libraries to integrate with Ember's live-reload.
25

36
In short, any tool that can output or change files automatically can be used to add live-reload behavior.
47

@@ -10,7 +13,7 @@ The process is:
1013
An example of this behavior and integration can be shown with a CSS authoring tool, Tailwind.
1114

1215

13-
[Tailwind](https://tailwindcss.com/) is a popular way to use utility-first classes in projects that helps unify large projects using design-tokens-as-code.
16+
[Tailwind](https://tailwindcss.com/) is a popular way to use utility-first CSS classes in an app. It can be used within many frontend frameworks, including Ember.
1417

1518
To use Tailwind JIT with Ember, this guide follows the [Tailwind Getting Started](https://tailwindcss.com/docs/installation) guide, with some minor tweaks to file names and their locations.
1619

@@ -77,7 +80,7 @@ A couple notes though:
7780
Lastly, we need to edit the `app/index.html` file to include the `tailwind.css` file:
7881

7982
```html
80-
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/tailwind.css">`
83+
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/tailwind.css">
8184
```
8285

8386
With these things in place, you'll be able to use all of Tailwind's capabilities, including JIT compilation.

0 commit comments

Comments
 (0)