grunt-combohtml
Advanced tools
Comparing version 0.1.11 to 0.1.12
{ | ||
"name": "grunt-combohtml", | ||
"description": "combine build html with ssi.", | ||
"version": "0.1.11", | ||
"version": "0.1.12", | ||
"homepage": "", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -69,3 +69,3 @@ /* | ||
if(typeof options.convert2vm !== "undefined" || options.convert2vm == true){ | ||
if(typeof options.convert2vm == "undefined" || options.convert2vm == true){ | ||
outputVmFile(chunk,filep); | ||
@@ -75,3 +75,3 @@ sholdtidy = false; | ||
if(typeof options.convert2php !== "undefined" || options.convert2php == true){ | ||
if(typeof options.convert2php == "undefined" || options.convert2php == true){ | ||
outputPhpFile(chunk,filep); | ||
@@ -81,3 +81,3 @@ sholdtidy = false; | ||
if(typeof options.convert2tms !== "undefined" || options.convert2tms == true){ | ||
if(typeof options.convert2tms == "undefined" || options.convert2tms == true){ | ||
outputTmsFile(chunk,filep); | ||
@@ -84,0 +84,0 @@ sholdtidy = false; |
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
89185