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

docpad-plugin-coffeescript

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docpad-plugin-coffeescript - npm Package Compare versions

Comparing version

to
2.1.2

3

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

63

out/coffeescript.plugin.js

@@ -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`