grunt-combohtml
Advanced tools
Comparing version 0.1.9 to 0.1.10
{ | ||
"name": "grunt-combohtml", | ||
"description": "combine build html with ssi.", | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"homepage": "", | ||
@@ -40,3 +40,3 @@ "author": { | ||
"readmeFilename": "README.md", | ||
"_id": "grunt-combohtml@0.1.8", | ||
"_id": "grunt-combohtml@0.1.9", | ||
"_from": "grunt-combohtml@", | ||
@@ -43,0 +43,0 @@ "dist": { |
@@ -511,3 +511,7 @@ | ||
var tag_name = multi_parser.token_text.match(/\w+/)[0]; | ||
var tag_extracted_from_last_output = multi_parser.output[multi_parser.output.length -1].match(/<\s*(\w+)/); | ||
try { | ||
var tag_extracted_from_last_output = multi_parser.output[multi_parser.output.length -1].match(/<\s*(\w+)/); | ||
} catch(e){ | ||
var tag_extracted_from_last_output = null; | ||
} | ||
if (tag_extracted_from_last_output === null || tag_extracted_from_last_output[1] !== tag_name) | ||
@@ -514,0 +518,0 @@ multi_parser.print_newline(true, multi_parser.output); |
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
42483
1117