docpad-plugin-coffeescript
Advanced tools
Comparing version
## History | ||
- v2.1.2 November 17, 2012 | ||
- Updated CoffeeScript from 1.3.x to 1.4.x | ||
- v2.1.1 August 10, 2012 | ||
@@ -4,0 +7,0 @@ - Re-added markdown files to npm distribution as they are required for the npm website |
@@ -1,41 +0,38 @@ | ||
// Generated by CoffeeScript 1.3.3 | ||
(function() { | ||
var __hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | ||
// Generated by CoffeeScript 1.4.0 | ||
var __hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | ||
module.exports = function(BasePlugin) { | ||
var CoffeescriptPlugin; | ||
return CoffeescriptPlugin = (function(_super) { | ||
module.exports = function(BasePlugin) { | ||
var CoffeescriptPlugin; | ||
return CoffeescriptPlugin = (function(_super) { | ||
__extends(CoffeescriptPlugin, _super); | ||
__extends(CoffeescriptPlugin, _super); | ||
function CoffeescriptPlugin() { | ||
return CoffeescriptPlugin.__super__.constructor.apply(this, arguments); | ||
} | ||
function CoffeescriptPlugin() { | ||
return CoffeescriptPlugin.__super__.constructor.apply(this, arguments); | ||
} | ||
CoffeescriptPlugin.prototype.name = 'coffeescript'; | ||
CoffeescriptPlugin.prototype.name = 'coffeescript'; | ||
CoffeescriptPlugin.prototype.renderCoffeeScriptToJavaScript = function(opts, next) { | ||
var coffee, content; | ||
content = opts.content; | ||
coffee = require('coffee-script'); | ||
opts.content = coffee.compile(content); | ||
CoffeescriptPlugin.prototype.renderCoffeeScriptToJavaScript = function(opts, next) { | ||
var coffee, content; | ||
content = opts.content; | ||
coffee = require('coffee-script'); | ||
opts.content = coffee.compile(content); | ||
return next(); | ||
}; | ||
CoffeescriptPlugin.prototype.render = function(opts, next) { | ||
var inExtension, outExtension; | ||
inExtension = opts.inExtension, outExtension = opts.outExtension; | ||
if (inExtension === 'coffee' && (outExtension === 'js' || outExtension === null)) { | ||
return this.renderCoffeeScriptToJavaScript(opts, next); | ||
} else { | ||
return next(); | ||
}; | ||
} | ||
}; | ||
CoffeescriptPlugin.prototype.render = function(opts, next) { | ||
var inExtension, outExtension; | ||
inExtension = opts.inExtension, outExtension = opts.outExtension; | ||
if (inExtension === 'coffee' && (outExtension === 'js' || outExtension === null)) { | ||
return this.renderCoffeeScriptToJavaScript(opts, next); | ||
} else { | ||
return next(); | ||
} | ||
}; | ||
return CoffeescriptPlugin; | ||
return CoffeescriptPlugin; | ||
})(BasePlugin); | ||
}; | ||
}).call(this); | ||
})(BasePlugin); | ||
}; |
@@ -1,21 +0,18 @@ | ||
// Generated by CoffeeScript 1.3.3 | ||
(function() { | ||
var __hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | ||
// Generated by CoffeeScript 1.4.0 | ||
var __hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; | ||
module.exports = function(testers) { | ||
var MyTester; | ||
return MyTester = (function(_super) { | ||
module.exports = function(testers) { | ||
var MyTester; | ||
return MyTester = (function(_super) { | ||
__extends(MyTester, _super); | ||
__extends(MyTester, _super); | ||
function MyTester() { | ||
return MyTester.__super__.constructor.apply(this, arguments); | ||
} | ||
function MyTester() { | ||
return MyTester.__super__.constructor.apply(this, arguments); | ||
} | ||
return MyTester; | ||
return MyTester; | ||
})(testers.RendererTester); | ||
}; | ||
}).call(this); | ||
})(testers.RendererTester); | ||
}; |
{ | ||
"name": "docpad-plugin-coffeescript", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Adds support for CoffeeScript to JavaScript compilation to DocPad", | ||
"homepage": "https://github.com/bevry/docpad-extras", | ||
"homepage": "http://docpad.org/plugin/coffeescript", | ||
"keywords": [ | ||
@@ -21,7 +21,7 @@ "docpad", | ||
"bugs": { | ||
"url": "https://github.com/bevry/docpad-extras/issues" | ||
"url": "http://docpad.org/plugin/coffeescript/issues" | ||
}, | ||
"repository" : { | ||
"type": "git", | ||
"url": "http://github.com/bevry/docpad-extras.git" | ||
"url": "https://github.com/docpad/docpad-plugin-coffeescript.git" | ||
}, | ||
@@ -33,7 +33,4 @@ "engines" : { | ||
"dependencies": { | ||
"coffee-script": "1.3.x" | ||
"coffee-script": "1.4.x" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "1.3.x" | ||
}, | ||
"main": "./out/coffeescript.plugin.js", | ||
@@ -40,0 +37,0 @@ "scripts": { |
# CoffeeScript Plugin for DocPad | ||
Adds support for [CoffeeScript](http://coffeescript.org/) to JavaScript compilation to [DocPad](https://github.com/bevry/docpad) | ||
Adds support for [CoffeeScript](http://coffeescript.org/) to JavaScript compilation to [DocPad](https://docpad.org) | ||
@@ -4,0 +4,0 @@ Convention: `.js.coffee` |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
Found 1 instance in 1 package
0
-100%0
-100%4143
-2.88%43
-8.51%1
Infinity%+ Added
- Removed
Updated