Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-cortex-handlebars-compiler

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-cortex-handlebars-compiler - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

18

index.js

@@ -17,3 +17,2 @@ 'use strict';

function compiler (options){

@@ -85,4 +84,17 @@ return new Compiler(options || {});

Compiler.prototype._gather_info = function(callback) {
function cb (pkg, graph, shrinkwrap) {
var version = process.env.NEURON_VERSION;
if (!shrinkwrap.engines && version) {
shrinkwrap.engines = {
'neuron': {
'from': 'neuron@' + version,
'version': version
}
};
}
callback(null, pkg, graph, shrinkwrap);
}
if (this.pkg && this.graph && this.shrinkwrap) {
return callback(null, this.pkg, this.graph, this.shrinkwrap);
return cb(this.pkg, this.graph, this.shrinkwrap);
}

@@ -104,3 +116,3 @@

self.shrinkwrap = shrinkwrap;
callback(null, self.pkg, graph, shrinkwrap);
cb(self.pkg, graph, shrinkwrap);
});

@@ -107,0 +119,0 @@ });

2

package.json
{
"name": "gulp-cortex-handlebars-compiler",
"version": "1.0.3",
"version": "1.0.4",
"description": "Gulp task builder for cortex-handlebars-compiler",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc