base-create
Advanced tools
Comparing version 3.0.3 to 3.0.4
@@ -29,3 +29,3 @@ const path = require("path"); | ||
const normalizeFile = (file) => { | ||
const normalizeFile = (file, params) => { | ||
// Following `vinyl` file schema. | ||
@@ -62,3 +62,4 @@ const filepath = typeof file === "string" ? file : file.path; | ||
const normalizedFiles = files && files.map(normalizeFile); | ||
const normalizedFiles = | ||
files && files.map((file) => normalizeFile(file, params)); | ||
@@ -65,0 +66,0 @@ if (!skipGitignore) { |
{ | ||
"name": "base-create", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "Utility for npm init create-* scripts.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
10589
182