Created
December 3, 2018 12:31
-
-
Save matthewrudy/fdb6c029b934665438b9f9c679bdf865 to your computer and use it in GitHub Desktop.
Compiling sass to css adds back in the leading zero
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ echo 'p { margin: .5em }' > /tmp/in.scss | |
$ sass --style compressed /tmp/in.scss /tmp/out.css | |
$ cat /tmp/out.css | |
p{margin:0.5em} | |
/*# sourceMappingURL=out.css.map */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment