Skip to content

Instantly share code, notes, and snippets.

@korvus
Created February 6, 2015 11:13
Show Gist options
  • Save korvus/50108053d7d065ce787b to your computer and use it in GitHub Desktop.
Save korvus/50108053d7d065ce787b to your computer and use it in GitHub Desktop.
.bat windows for automatically launch stylus task in windows
call "C:\Program Files\my\pathto\nodejs\nodevars.bat"
:: The way for launch the parameters for node
D:
:: In my case, needed to switch of disk
cd D:\yourpath\to\your\project\css\stylus
:: launch and watch with stylus command
stylus macss -w -o ../
@korvus
Copy link
Author

korvus commented Feb 6, 2015

put it in a .bat file

@korvus
Copy link
Author

korvus commented Apr 7, 2015

Alternative for maintain window consol open :
start /b "C:\Program Files\my\pathto\nodejs\nodevars.bat"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment