Skip to content

Instantly share code, notes, and snippets.

@phillipalexander
Created August 28, 2013 03:53
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 phillipalexander/6361974 to your computer and use it in GitHub Desktop.
Save phillipalexander/6361974 to your computer and use it in GitHub Desktop.
Sublime Text 3 JavaScript Build System
{
"cmd": ["node", "$file"]
, "selector": "source.js"
, "path": "/usr/local/bin"
, "working_dir": "$project_path"
, "variants":
[
{
"name": "Run",
"cmd": ["js2coffee", "$file"],
},
{
"name": "Debug",
"cmd": ["nodebug", "$file"],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment