grunt-includes
Advanced tools
Comparing version 0.4.4 to 0.4.5
{ | ||
"name": "grunt-includes", | ||
"description": "Include other files within a file.", | ||
"version": "0.4.4", | ||
"version": "0.4.5", | ||
"author": "vanetix <matmcfarland@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "Gruntfile.js", |
@@ -51,2 +51,10 @@ /** | ||
if(grunt.util.kindOf(opts.includeRegexp) === 'string') { | ||
opts.includeRegexp = new RegExp(opts.includeRegexp); | ||
} | ||
if(grunt.util.kindOf(opts.templateFileRegexp) === 'string') { | ||
opts.templateFileRegexp = new RegExp(opts.templateFileRegexp); | ||
} | ||
// Render banner | ||
@@ -53,0 +61,0 @@ banner = grunt.template.process(opts.banner); |
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
13507
186