fis-auto-packager
Advanced tools
Comparing version
@@ -144,3 +144,3 @@ var File = require("./file.js"), | ||
function createPackageMap(autopackJsons, defaultPackages){ | ||
var index = 0; | ||
var keyIndex = 0; | ||
util.map(autopackJsons, function(index, autopackJson){ | ||
@@ -154,10 +154,11 @@ var filename = autopackJson.split("/").pop(); | ||
util.map(packConf, function(path, patterns){ | ||
var pid = "p" + index; | ||
index++; | ||
var pid = "p" + keyIndex; | ||
keyIndex++; | ||
if(typeof patterns === 'string' || patterns instanceof RegExp){ | ||
patterns = [ patterns ]; | ||
} | ||
var packageKey = fixManualPkgkey(path, module); | ||
if(util.is(patterns, 'Array') && patterns.length){ | ||
defaultPackages[pid] = { | ||
file : path, | ||
file : packageKey, | ||
regs : patterns, | ||
@@ -175,1 +176,6 @@ module : module | ||
//添加模块名前缀,防止不同模块出现相同的filename | ||
function fixManualPkgkey(filename, module){ | ||
filename = filename.replace(/\/|\./g, "_"); | ||
return module + "_" + filename; | ||
} |
@@ -29,5 +29,6 @@ | ||
util.map(resources, function(packageKeyPrefix, packages){ | ||
//这里注意对于生成的packageKeyPrefix是是有格式要求的:第一个是module,最后一个是type | ||
var tokens = packageKeyPrefix.split("_"), | ||
module = tokens[0], | ||
type = tokens[2]; | ||
type = tokens[tokens.length-1]; | ||
if(!packResults[module]){ | ||
@@ -34,0 +35,0 @@ packResults[module] = {}; |
{ | ||
"name": "fis-auto-packager", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "fis-auto-packager", | ||
@@ -5,0 +5,0 @@ "main": "fis-auto-packager.js", |
@@ -87,3 +87,3 @@ /** | ||
} | ||
var packageKey = mergedFile.get("module") + "_" + file.replace(".", "_"); | ||
var packageKey = file; | ||
mergedFile.set("id", file); | ||
@@ -90,0 +90,0 @@ mergedFile.set("packageType", "manual"); |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
210779
0.17%1715
0.41%1
Infinity%