Skip to content

Instantly share code, notes, and snippets.

@tinker1987
Forked from corbanb/JavaScript.sublime-build
Created November 22, 2017 16:08

Revisions

  1. @corbanb corbanb revised this gist Sep 24, 2014. 2 changed files with 2 additions and 2 deletions.
    2 changes: 1 addition & 1 deletion JavaScript.sublime-build
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    // Sublime Text 2 Build System for Javascript
    // Sublime Text - Build System for Javascript
    {
    "cmd": ["node", "$file"],
    "selector": "source.js"
    2 changes: 1 addition & 1 deletion PHP.sublime-build
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    // Sublime Text 2 Build System for PHP
    // Sublime Text - Build System for PHP
    {
    "cmd": ["php", "$file"],
    "selector": "source.php"
  2. @corbanb corbanb revised this gist Sep 24, 2014. 1 changed file with 9 additions and 0 deletions.
    9 changes: 9 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -5,3 +5,12 @@
    - Any commandline tool for compiling code can be used.
    - Cmd + B (OSX) will build files and send output to the Sublime Console



    ## Example Files
    ![Submlime Examples](http://f.cl.ly/items/0a393Z2p1j1t1l042a3V/Screen%20Shot%202014-09-24%20at%2010.07.00%20AM.png)


    ## Sublime Settings
    Here you can see where to **create new builds** and to setup **automatic build types**.
    ![Sublime Build Menu](http://cl.ly/image/1c403E1f3u2N/Screen%20Shot%202014-09-24%20at%2010.09.30%20AM.png)
  3. @corbanb corbanb revised this gist Sep 24, 2014. No changes.
  4. @corbanb corbanb revised this gist Sep 24, 2014. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -4,3 +4,4 @@
    - Save files as Language.sublime-build
    - Any commandline tool for compiling code can be used.
    - Cmd + B (OSX) will build files and send output to the Sublime Console

  5. @corbanb corbanb revised this gist Sep 24, 2014. 3 changed files with 12 additions and 1 deletion.
    2 changes: 1 addition & 1 deletion JavaScript.sublime-build
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    // Sublime Text 2 Build System using Node.js
    // Sublime Text 2 Build System for Javascript
    {
    "cmd": ["node", "$file"],
    "selector": "source.js"
    5 changes: 5 additions & 0 deletions PHP.sublime-build
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    // Sublime Text 2 Build System for PHP
    {
    "cmd": ["php", "$file"],
    "selector": "source.php"
    }
    6 changes: 6 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    # Build Tools for Sublimetext

    - Add new build systems via `Tools > Build System > New Build System`.
    - Save files as Language.sublime-build
    - Any commandline tool for compiling code can be used.
    - Cmd + B (OSX) will build files and send output to the Sublime Console
  6. @corbanb corbanb created this gist Sep 24, 2014.
    5 changes: 5 additions & 0 deletions JavaScript.sublime-build
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    // Sublime Text 2 Build System using Node.js
    {
    "cmd": ["node", "$file"],
    "selector": "source.js"
    }