New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

compilers

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compilers - npm Package Compare versions

Comparing version
1.2.0
to
2.0.0
+1
-1
package.json
{
"name": "compilers",
"version": "1.2.0",
"version": "2.0.0",
"description": "Universal preprocessor loader for templating and transpiling",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -6,2 +6,4 @@ # compilers

This package is not supported and is only used for a personal project.
Given a request for a preprocessor/transpiler/templating engine/postprocessor,

@@ -8,0 +10,0 @@ spits back a function of the form `function(err, compiled)`.

@@ -84,3 +84,3 @@

"modules" : ["ejs"],
"syntax" : "compile(str, options)(context)",
"syntax" : "compile(str, options)",
"options" : {}

@@ -111,3 +111,3 @@ },

"modules" : ["handlebars"],
"syntax" : "compile(str)(context)"
"syntax" : "compile(str)"
},

@@ -119,3 +119,3 @@ {

"modules" : ["swig"],
"syntax" : "render(str, { locals : context })",
"syntax" : "compile(str)"
},

@@ -127,3 +127,3 @@ {

"modules" : ["mustache"],
"syntax" : "render(str, context)"
"syntax" : "function(context){return render(str, context);}"
},

@@ -135,3 +135,3 @@ {

"modules" : ["dustjs-linkedin", "dustjs-helpers"],
"syntax" : "renderSource(str, context, next)"
"syntax" : "compile(str)"
},

@@ -143,3 +143,3 @@ {

"modules" : ["hamljs"],
"syntax" : "render(str, context)"
"syntax" : "compile(str)"
},

@@ -151,3 +151,3 @@ {

"modules" : ["nunjucks"],
"syntax" : "renderString(str, context)"
"syntax" : "compile(str)"
},

@@ -159,3 +159,3 @@ {

"modules" : ["hogan.js"],
"syntax" : "compile(str).render(context)"
"syntax" : ";(function(){var _c=compile(str, options);return function(context){ return _c.render(context) })()"
},

@@ -167,3 +167,3 @@ {

"modules" : ["pug"],
"syntax" : "render(str, context)",
"syntax" : "compile(str, options)",
"options" : {}

@@ -176,3 +176,3 @@ },

"modules" : ["pug"],
"syntax" : "render(str, context)",
"syntax" : "compile(str, options)",
"options" : {}

@@ -208,3 +208,3 @@ },

"modules" : ["lodash"],
"syntax" : "template(str)(context)"
"syntax" : "template(str)"
},

@@ -216,3 +216,3 @@ {

"modules" : ["underscore"],
"syntax" : "template(str)(context)"
"syntax" : "template(str)"
},

@@ -219,0 +219,0 @@ {