0.1.4 • Published 12 years ago
coffee-files v0.1.4
coffee-files
Compile Coffeescript files
Installation
npm install coffee-filesUsage
file(inputFile, outputFile, options, callback)
inputFile- file to compileoutputFile- path in which to write compiled fileoptions- options forcoffee.compile()plus the following:sourceMap- enable source map, writing it to this file
callback- function that will be called with(err, { outputFile, outputData, sourceMapFile, sourceMapData })
glob(patterns, base, outputDir, options, callback, updateCallback, removeCallback)
Uses the mirror-glob module to compile a group of files and possibly watch them for changes afterwards.
patterns- a glob pattern or array of glob patterns to processbase- an options object to pass toglob()or the base folder in which to search for the patterns (equivalent tooptions.cwd)outputDir- the directory in which to write the processed filesoptionswatch- (default:false) whether the files should be watched for changessourceMapDir- enable source maps, writing them to the specified directory
callback- function to be called after the initial processing is finished, with(err, results)updateCallback- function to be called after processing is finished due to a file being changed or added. only called whenoptions.watchistrueremoveCallback- function to be called after a file is removed. only called whenoptions.watchistrue
Example
var coffee = require('coffee-files');
coffee.file('f1.coffee', 'f1.js', function(err, result) {
// result == { outputFile: 'f1.js', outputData: '...' }
})
coffee.file('f1.coffee', 'f1.js', { sourceMap: 'f1.map' }, function(err, result) {
// result == { outputFile: 'f1.js', outputData: '...', sourceMapFile: 'f1.map', sourceMapData: '...' }
})
coffee.glob('*.coffee', 'src', 'build', {}, function(err, result) {
// result == [ { outputFile, outputData }, { outputFile, outputData }, ... ]
})
coffee.glob('*.coffee', 'src', 'build', { watch: true, sourceMapDir: 'maps' }, function(err, result) {
// console.log("Finished initial processing")
// result == [ { outputFile, outputData, sourceMapFile, sourceMapData }, ... ]
}, function(err, success) {
console.log("File reprocessed");
// success == { outputFile, outputData, sourceMapFile, sourceMapData}
}, function(err) {
console.log("File removed");
// err is not null if an error ocurred while unlinking the file
});TODO
This functionality should probably be on the coffee-script module, since the coffee binary already does someting similar to this.