New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-coffee

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-coffee - npm Package Compare versions

Comparing version

to
0.0.2

.npmignore

6

CHANGELOG.md
# 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