Parallel Builder
Sublime Text2 Plugin - It allows you to run more than one build command in Parallel
Details
Installs
- Total 152
- Win 80
- Mac 51
- Linux 21
Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Important for the ST3 Users
This plugin does not work on ST3. Please use https://github.com/GianlucaGuarini/Sublime-Text-Concat-Builder instead
Parallel Builder for SublimeText 2
It allows you to run more than one build command in Parallel
Once you define your custom Build settings you will be able to run more than one build process at the same time.
This plugin is ideal if you have to compile more than one LESS/SASS file at the same time or to minify your javascript and so on. I suggest you to use it combined with NODEJS and “OnSaveBuild”: https://github.com/alexnj/SublimeOnSaveBuild
Video Tutorial
Usage
- Install it through the sublime package control http://wbond.net/sublime_packages/package_control
- Create you custom builder JSON setting the value of the “target” property to “parallel_builder” (check the following example)
- Run your Sublime Text2 Builder (Windows: CTRL + B, Mac: Cmd-B)
Example: Custom Builder
(To create your custom builder you need to go on Tools -> Build System -> New Build System)
more infos http://docs.sublimetext.info/en/latest/reference/build_systems.html#troubleshooting-build-systems
ON OS
{
"working_dir": "${project_path:${folder}}",
"target" : "parallel_builder",
"cmd": {
"Js Min":{
"cmd": ["minifyjs", "path_to_your_js_file.js", ">", "output_path.js"]
},
"less file1":{
"cmd": ["lessc", "path_to_your_LESS_file.less", "output_path.less.css"]
},
"Less file2":{
"cmd": ["lessc", "path_to_your_LESS_file2.less", "output_path2.less.css"]
}
}
}
ON WINDOWS
{
"working_dir": "${project_path:${folder}}",
"target" : "parallel_builder",
"cmd": {
"Js Min":{
"cmd": ["minifyjs.cmd", "path_to_your_js_file.js", ">", "output_path.js"]
},
"less file1":{
"cmd": ["lessc.cmd", "path_to_your_LESS_file.less", "output_path.less.css"]
},
"Less file2":{
"cmd": ["lessc.cmd", "path_to_your_LESS_file2.less", "output_path2.less.css"]
}
}
}
More Details
Once you set the property “target” to “parallel_builder”, you can set the command to run for each item inside the “cmd” node, and also the path to your command script. In the previous example any command is already installed by Npm and set as system environment variables. The name for each cmd node should be a short description of the final task
Known issues
Even each command is executed sequentially I suggest you to run any command in parallel without let them working sequentially on the same files. For these tasks I suggest you to build a GRUNT script https://github.com/cowboy/grunt