Created
October 10, 2015 16:17
-
-
Save bobylito/15268b59b508c19f3775 to your computer and use it in GitHub Desktop.
Multiline text hack from CSSNext cli
This file contains hidden or 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
program.on("--help", function() { | |
console.log(function() {/* | |
Examples: | |
# pass an input and output file | |
$ cssnext input.css output.css | |
# start cssnext watcher (need input & output) | |
$ cssnext --watch input.css output.css | |
# using stdin and stdout | |
$ cat input.css | cssnext > output.css | |
*/ | |
}.toString().split("\n").slice(1, -2).join("\n")) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment