Comparing version 1.1.3 to 1.1.4
@@ -226,3 +226,8 @@ import * as yaml from 'js-yaml'; | ||
} else { | ||
Object.assign(target, { [key]: source[key] }); | ||
if(Array.isArray(target[key]) && Array.isArray(source[key])) { | ||
target[key].push(...source[key]) | ||
} | ||
else { | ||
Object.assign(target, { [key]: source[key] }); | ||
} | ||
} | ||
@@ -229,0 +234,0 @@ } |
{ | ||
"name": "tmpltr", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Templating with mustache and YAML", | ||
@@ -5,0 +5,0 @@ "main": "bin.js", |
Sorry, the diff of this file is not supported yet
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
18032
285