Skip to content

Instantly share code, notes, and snippets.

View burisu's full-sized avatar

Brice Texier burisu

  • France
  • 18:23 (UTC +01:00)
View GitHub Profile
@burisu
burisu / coffee2js.sh
Last active July 11, 2019 10:31 — forked from Stanback/coffee2js.sh
Convert all CoffeeScript files to Javascript (coffee2js)
#!/bin/sh
# Install coffeescript cli
npm -g install decaffeinate
# Convert all coffeescript files to javascript
find . -name "*.coffee" -exec decaffeinate --use-cs2 --disable-suggestion-comment {} \;
# Optionally delete original coffee files
find . -name "*.coffee" -exec rm {} \;