Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Commit a61c55f

Browse files
committed
Update readme on SCSS opt-in
1 parent 5a2403b commit a61c55f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: README.md

+9
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Usually, building HTML emails yourself is tedious. On top of that, add the need
88

99
- **Server side rendering** with the [Meteor SSR](https://github.com/meteorhacks/meteor-ssr/) package. Use Blaze features and helpers like on the client.
1010
- **CSS inlining** with [Juice](http://npmjs.org/package/juice). No extra build step.
11+
- **SCSS support** using `node-sass` (opt-in).
1112
- **Preview and debug** emails in development mode in your browser when developing.
1213
- **Layouts** for re-using markup.
1314

@@ -25,6 +26,14 @@ meteor add lookback:emails
2526

2627
A `Mailer` global will exported on the *server*.
2728

29+
**Notice.** If you want SCSS support, be sure to add the `[meteor-node-sass](https://github.com/chrisbutler/meteor-node-sass)` package to your app:
30+
31+
```
32+
meteor add chrisbutler:node-sass
33+
```
34+
35+
`lookback:emails` will automatically detect `node-sass` being available, and will be able to compile `.scss` files.
36+
2837
## Sample app
2938

3039
There is a sample application in this repo, in the `example` directory. Boot it up, and preview an email with:

0 commit comments

Comments
 (0)