broccoli-coffee
Advanced tools
Comparing version
# master | ||
# 0.0.1 | ||
## 0.0.2 | ||
* Use new `Filter` architecture | ||
## 0.0.1 | ||
* Initial release |
21
index.js
module.exports = function (broccoli) { | ||
CoffeeScriptPreprocessor.prototype = Object.create(broccoli.Preprocessor.prototype) | ||
CoffeeScriptPreprocessor.prototype.constructor = CoffeeScriptPreprocessor | ||
function CoffeeScriptPreprocessor (options) { | ||
CoffeeScriptFilter.prototype = Object.create(broccoli.Filter.prototype) | ||
CoffeeScriptFilter.prototype.constructor = CoffeeScriptFilter | ||
function CoffeeScriptFilter (options) { | ||
this.options = options || {} | ||
} | ||
CoffeeScriptPreprocessor.prototype.extensions = ['coffee'] | ||
CoffeeScriptPreprocessor.prototype.targetExtension = 'js' | ||
CoffeeScriptFilter.prototype.extensions = ['coffee'] | ||
CoffeeScriptFilter.prototype.targetExtension = 'js' | ||
CoffeeScriptPreprocessor.prototype.processString = function (string, info, callback) { | ||
CoffeeScriptFilter.prototype.processString = function (string, info) { | ||
// We must be careful to create a fresh options hash every time. | ||
@@ -17,15 +17,12 @@ // https://github.com/jashkenas/coffee-script/issues/1924#issuecomment-28157026 | ||
} | ||
var output | ||
try { | ||
output = require('coffee-script').compile(string, options) | ||
return require('coffee-script').compile(string, options) | ||
} catch (err) { | ||
err.line = err.location && err.location.first_line | ||
err.column = err.location && err.location.first_column | ||
callback(err) | ||
return | ||
throw err | ||
} | ||
callback(null, output) | ||
} | ||
return CoffeeScriptPreprocessor | ||
return CoffeeScriptFilter | ||
} |
{ | ||
"name": "broccoli-coffee", | ||
"description": "CoffeeScript preprocessor for Broccoli", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"author": "Jo Liss <joliss42@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -8,4 +8,4 @@ # broccoli-coffee | ||
```js | ||
var CoffeeScriptPreprocessor = require('broccoli-coffee')(broccoli); | ||
preprocessorPipeline.addPreprocessor(new CoffeeScriptPreprocessor); | ||
var CoffeeScriptFilter = require('broccoli-coffee')(broccoli); | ||
tree.addTransformer(new CoffeeScriptFilter); | ||
``` | ||
@@ -21,5 +21,5 @@ | ||
```js | ||
new CoffeeScriptPreprocessor({ | ||
new CoffeeScriptFilter({ | ||
bare: true | ||
}) | ||
``` |
Sorry, the diff of this file is not supported yet
2982
2.44%7
16.67%24
-11.11%