Last active
February 10, 2016 16:12
-
-
Save matheusfaustino/f15d5ceb2fe9176c7d73 to your computer and use it in GitHub Desktop.
Sublime project config for running electron app using build systems from sublime(by console) - Linux and OSX
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 characters
Show hidden characters
{ | |
"build_systems": | |
[ | |
{ | |
"name": "Electron", | |
"cmd": ["electron", "$project_path"], | |
"selector": "source.js", | |
"osx": { | |
"cmd": ["electron", "$project_path/main.js"], | |
"path": "/usr/local/bin" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment