@@ -30,6 +30,7 @@ in the [#perl6 IRC channel](https://perl6.org/community/irc).
30
30
- [ Zef] ( #zef )
31
31
- [ Pod::To::HTML] ( #podtohtml )
32
32
- [ Mojolicious / Web Server] ( #mojolicious--web-server )
33
+ - [ SASS compiler] ( #sass-compiler )
33
34
- [ pygmentize] ( #pygmentize )
34
35
- [ Inline::Python] ( #inlinepython )
35
36
- [ Build and view the documentation] ( #build-and-view-the-documentation )
@@ -204,6 +205,7 @@ computer. To do this you will need:
204
205
- [ Mojolicious] ( https://metacpan.org/pod/Mojolicious )
205
206
(optional; a Perl 5 web framework; it allows you to run a web
206
207
app locally to display the docs)
208
+ - [ SASS] ( http://sass-lang.com/ ) Compiler
207
209
- pygmentize (optional; a program to add syntax highlighting to code
208
210
examples)
209
211
- ` Inline::Python ` (optional; run Python code from within Perl 6,
@@ -247,14 +249,19 @@ install this now:
247
249
248
250
$ cpanm -vn Mojolicious
249
251
250
- If you also plan on modifying the SASS stylesheets, install these modules to
251
- enable SASS processor:
252
+ #### SASS Compiler
252
253
253
- $ cpanm -vn CSS::Sass Mojolicious::Plugin::AssetPack
254
+ To build the styles, you need to have a SASS compiler. You can either install
255
+ the ` sass ` command
256
+
257
+ $ sudo apt-get install ruby-sass
254
258
255
- Alternatively, you can install ` sass ` program and process SASS using that instead:
259
+ or the [ CSS::Sass Perl 5 module] ( https://modules.perl6.org/repo/CSS::Sass )
260
+
261
+ $ cpanm -vn CSS::Sass Mojolicious::Plugin::AssetPack
256
262
257
- $ sass -w assets/sass/style.scss:html/css/style.css
263
+ The SASS files are compiled when you run ` make html ` , or ` make sass ` , or
264
+ start the development webserver (` ./app-start ` ).
258
265
259
266
#### pygmentize
260
267
0 commit comments