Update with-sass-cli.html

Using flag option "source-map" results in error using sass --version 1.43.3

Expected: "Watch" and "Build" process of sass to run without errors.
What Actually Happens: The console throws an error: flag option "source-map" should not be given a value. 
Solution: When running the command for "Watch" and "Build" remove the flag option "source-map"
This commit is contained in:
Alexi Canales 2021-10-24 13:26:34 -05:00 committed by GitHub
parent f836eba12e
commit b121a5bf3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,11 +64,11 @@ Sass 3.5.3 (Bleeding Edge)
{% endcapture %}
{% capture build_sass %}
sass --sourcemap=none sass/mystyles.scss:css/mystyles.css
sass sass/mystyles.scss:css/mystyles.css
{% endcapture %}
{% capture watch_sass %}
sass --watch --sourcemap=none sass/mystyles.scss:css/mystyles.css
sass --watch sass/mystyles.scss:css/mystyles.css
{% endcapture %}
{% capture step_5 %}