single-file-core 1.5.36 → 1.5.38

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/core/index.js CHANGED
@@ -1220,7 +1220,7 @@ class Processor {
1220
1220
  }
1221
1221
  }
1222
1222
  });
1223
- await Promise.all(Array.from(this.doc.querySelectorAll("style, link[rel*=stylesheet]")).map(async element => {
1223
+ await Promise.all(Array.from(this.doc.querySelectorAll("style, link[rel*=stylesheet]:not([disabled])")).map(async element => {
1224
1224
  const options = Object.assign({}, this.options, { charset: this.charset });
1225
1225
  let mediaText;
1226
1226
  if (element.media) {
@@ -136,7 +136,7 @@ function getProcessorHelperClass(utilInstance) {
136
136
  styleElement.remove();
137
137
  }
138
138
  });
139
- if (options.groupDuplicateStylesheets) {
139
+ if (options.groupDuplicateStylesheets && doc.querySelector("style[" + DUPLICATE_STYLESHEET_ATTRIBUTE_NAME + "]")) {
140
140
  const scriptElement = doc.createElement("script");
141
141
  scriptElement.textContent = "document.currentScript.remove();addEventListener(\"load\",()=>document.querySelectorAll(\"style[" + DUPLICATE_STYLESHEET_ATTRIBUTE_NAME + "]\").forEach(e=>e.remove()))";
142
142
  doc.body.appendChild(scriptElement);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-core",
3
- "version": "1.5.36",
3
+ "version": "1.5.38",
4
4
  "description": "SingleFile Core",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",