single-file-core 1.2.31 → 1.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -84,6 +84,12 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
|
|
|
84
84
|
await Promise.all(entries.map(async entry => {
|
|
85
85
|
const { filename } = entry;
|
|
86
86
|
let dataWriter, content, textContent, mimeType;
|
|
87
|
+
const resourceInfo = {};
|
|
88
|
+
if (filename.match(REGEXP_MATCH_INDEX)) {
|
|
89
|
+
indexPages.push(resourceInfo);
|
|
90
|
+
} else {
|
|
91
|
+
resources.push(resourceInfo);
|
|
92
|
+
}
|
|
87
93
|
if (!options.password && entry.encrypted) {
|
|
88
94
|
options.password = prompt("Please enter the password to view the page");
|
|
89
95
|
}
|
|
@@ -119,12 +125,15 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
|
|
|
119
125
|
}
|
|
120
126
|
}
|
|
121
127
|
const name = entry.filename.match(/^([0-9_]+\/)?(.*)$/)[2];
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
+
Object.assign(resourceInfo, {
|
|
129
|
+
filename: entry.filename,
|
|
130
|
+
name,
|
|
131
|
+
url: entry.comment,
|
|
132
|
+
content,
|
|
133
|
+
mimeType,
|
|
134
|
+
textContent,
|
|
135
|
+
parentResources: []
|
|
136
|
+
});
|
|
128
137
|
}));
|
|
129
138
|
await zipReader.close();
|
|
130
139
|
indexPages.sort(sortByFilenameLength);
|