single-file-core 1.2.29 → 1.2.30

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.
@@ -91,7 +91,9 @@ function getProcessorHelperClass(utilInstance) {
91
91
  }
92
92
 
93
93
  replaceStylesheets(doc, stylesheets, options, resources) {
94
- for (const [key, stylesheetInfo] of stylesheets) {
94
+ const entries = Array.from(stylesheets);
95
+ entries.reverse();
96
+ for (const [key, stylesheetInfo] of entries) {
95
97
  if (key.urlNode) {
96
98
  const name = "stylesheet_" + resources.stylesheets.size + ".css";
97
99
  if (!isDataURL(stylesheetInfo.url) && options.saveOriginalURLs) {
@@ -100,10 +102,7 @@ function getProcessorHelperClass(utilInstance) {
100
102
  key.urlNode.value = name;
101
103
  }
102
104
  resources.stylesheets.set(resources.stylesheets.size, { name, content: this.generateStylesheetContent(stylesheetInfo.stylesheet, options), url: stylesheetInfo.url });
103
- }
104
- }
105
- for (const [key, stylesheetInfo] of stylesheets) {
106
- if (key.element) {
105
+ } else {
107
106
  if (key.element.tagName.toUpperCase() == "LINK") {
108
107
  const linkElement = key.element;
109
108
  const name = "stylesheet_" + resources.stylesheets.size + ".css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-core",
3
- "version": "1.2.29",
3
+ "version": "1.2.30",
4
4
  "description": "SingleFile Core",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",
@@ -127,6 +127,7 @@ async function extract(content, { password, prompt = () => { }, shadowRootScript
127
127
  }
128
128
  }));
129
129
  await zipReader.close();
130
+ resources.reverse();
130
131
  resources.sort(sortByFilenameLength);
131
132
  indexPages.sort(sortByFilenameLength);
132
133
  resources.sort((resourceLeft, resourceRight) => resourceRight.textContent ? -1 : resourceLeft.textContent ? 1 : 0);