Last active
July 11, 2019 10:30
-
-
Save Stanback/3842c228c59c380233bd to your computer and use it in GitHub Desktop.
Revisions
-
Brian Stanback revised this gist
Dec 1, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ npm -g install coffee-script # Convert all coffeescript files to javascript find . -name "*.coffee" -exec coffee --no-header --bare -c {} \; # Optionally delete original coffee files find . -name "*.coffee" -exec rm {} \; -
Brian Stanback revised this gist
Dec 1, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,4 +7,4 @@ npm -g install coffee-script find . -name "*.coffee" --exec coffee --no-header --bare -c {} \; # Optionally delete original coffee files find . -name "*.coffee" --exec rm {} \; -
Brian Stanback created this gist
Dec 1, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ #!/bin/sh # Install coffeescript cli npm -g install coffee-script # Convert all coffeescript files to javascript find . -name "*.coffee" --exec coffee --no-header --bare -c {} \; # Optionally delete original coffee files ind . -name "*.coffee" --exec rm {} \;