Skip to content

Commit d0bf21b

Browse files
author
David Heinemeier Hansson
authored
Merge pull request #21 from jlm/main
2 parents f17518d + 68be096 commit d0bf21b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The installer will create your default Sass input file in `app/assets/stylesheet
88

99
If you need to configure the build process – beyond configuring the build files – you can run `bundle exec dartsass` to access the platform-specific executable, and give it your own build options.
1010

11-
When you're developing your application, you want to run Dart Sass in watch mode, so changes are automatically reflected in the generated CSS output. You can do this either by running `rails dartsass:watch` as a separate process, or by running `./bin/dev` which uses [foreman](https://github.com/ddollar/foreman) to starts both the Dart Sass watch process and the rails server in development mode.
11+
When you're developing your application, you want to run Dart Sass in watch mode, so changes are automatically reflected in the generated CSS output. You can do this either by running `rails dartsass:watch` as a separate process, or by running `./bin/dev` which uses [foreman](https://github.com/ddollar/foreman) to start both the Dart Sass watch process and the rails server in development mode.
1212

1313

1414
## Installation
@@ -65,16 +65,16 @@ and want to switch to dartsass-rails, follow these instructions below:
6565
1. Remove any references to Sass files from the Sprockets manifest file:
6666
`app/assets/config/manifest.js`
6767
68-
1. In your continues integration pipeline, before running any tests that
69-
interacts with the browser, make sure to build the Sass files by running:
68+
1. In your continuous integration pipeline, before running any tests that
69+
interact with the browser, make sure to build the Sass files by running:
7070
7171
```
7272
bundle exec rails dartsass:build
7373
```
7474
7575
## Troubleshooting
7676
77-
Some common problems experienced by users ...
77+
Some common problems experienced by users:
7878
7979
### LoadError: cannot load such file -- sassc
8080
@@ -83,7 +83,7 @@ but the sass-rails or sassc-rails gems are not installed. This is expected,
8383
since Dart Sass is used instead to build Sass files, and the solution is
8484
to make sure that Sprockets is not building any Sass files.
8585
86-
There are three reasons for why this error can occur:
86+
There are three reasons why this error can occur:
8787
8888
#### Sass files are referenced in the Sprockets manifest file
8989
@@ -109,16 +109,16 @@ the Dart Sass process is most likely not running.
109109
Make sure the Dart Sass process is running by starting the Rails sever by
110110
running: `./bin/dev`.
111111
112-
#### Running continues integration pipelines
112+
#### Running continuous integration pipelines
113113
114-
If you receive this error when running tests that interacts with the browser in
115-
a continues integration pipeline and have removed any references to Sass files
114+
If you receive this error when running tests that interact with the browser in
115+
a continuous integration pipeline and have removed any references to Sass files
116116
from the Sprockets manifest file, the Sass files have most likely not been
117117
built.
118118
119119
##### Solution
120120
121-
Add a step to the continues integration pipeline to build the Sass files with
121+
Add a step to the continuous integration pipeline to build the Sass files with
122122
the following command: `bundle exec rails dartsass:build`.
123123
124124
## Version

0 commit comments

Comments
 (0)