Rehab helps you deal with your file dependencies
If you need to work with multiples CoffeeScript files and need to join then into a single JavaScript file at the end, Rehab is wating for you.
You won't immediately realize you have a problem. Just a few .coffee files here and there and all you need is coffee --join
to make it work.
Then, one day, you realize you need more! You need your files to have order or it won't work properly. And that little friend transpiler won't help. You start making maneuvers, like huge Cakefiles, file lists(!) or even put your files in alphabetic order (!!!). But one day you stop and think "There should be a better way to do that! I need help!"
Yes, we know... That's why we are here.
Rehab deals with coffeescript dependency using a simple tag #_require [filename]
on the file that have dependencies.
#_require ../filenameA.coffee
#_require ../filenameB.coffee
class app.Model2
With that on your troublesome files and Rehab will give you a list of files in the right order so you can use it, for instance, with your Cakefile:
{exec} = require 'child_process'
Rehab = require 'coffeescript-rehab'
task 'build', 'Compile CoffeeScript using Rehab', ->
console.log "Compiling project from src/*.coffee to lib/app.js"
files = new Rehab().process './src'
to_single_file = "--join lib/app.js"
from_files = "--compile #{files.join ' '}"
exec "coffee #{to_single_file} #{from_files}", (err, stdout, stderr) ->
throw err if err
If you install coffeescript-rehab globally, you can use it in the command line!
npm install -g coffeescript-rehab
Use:
rehab main.coffee
or rehab directory
or rehab directory ../fileoutput.js
You can use Rehab to concatenate all your favorite languages!
- Stylus
- LESS
- SASS
- JavaScript
- Etc.
###Just use a one line comment!
In Stylus:
html.styl
html
background white
body.styl
//require html
body
background gray
©2012 David Lojudice Sobrinho and available under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.