browserify-hogan
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -7,3 +7,3 @@ var hogan = require('hogan.js'), | ||
var wrap = function(template) { | ||
return 'module.exports=(function() {var t = ' + template + '; return function(l) { return t(l) }}())' | ||
return 'module.exports=(function() {var Hogan = require(\'hogan.js\');var template = new Hogan.Template(' + template + ');return function(data) {return template.render(data)}}());' | ||
} | ||
@@ -10,0 +10,0 @@ |
@@ -11,3 +11,3 @@ { | ||
], | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"license": "MIT", | ||
@@ -14,0 +14,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2687