Skip to content

Instantly share code, notes, and snippets.

@hyrious
Last active April 22, 2017 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hyrious/51771f8ac0ef56132dc7f85af0ff2aef to your computer and use it in GitHub Desktop.
Save hyrious/51771f8ac0ef56132dc7f85af0ff2aef to your computer and use it in GitHub Desktop.
Stylus on Windows: Compile *.css and *.min.css
@set src=1px
@echo off
call stylus -o dist %src%.styl
copy /v /y %src%.styl %src%.min.styl >nul
call stylus -c -o dist %src%.min.styl
del %src%.min.styl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment