single-file-core 1.2.36 → 1.2.37

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.
Files changed (2) hide show
  1. package/core/index.js +2 -2
  2. package/package.json +1 -1
package/core/index.js CHANGED
@@ -168,7 +168,7 @@ const STAGES = [{
168
168
  }, {
169
169
  sequential: [
170
170
  { action: "loadOptionsFromPage" },
171
- { option: "saveOptionsIntoPage", action: "saveOptionsIntoPage" },
171
+ { option: "saveFilenameTemplateData", action: "saveFilenameTemplateData" },
172
172
  ]
173
173
  }];
174
174
 
@@ -650,7 +650,7 @@ class Processor {
650
650
  }
651
651
  }
652
652
 
653
- saveOptionsIntoPage() {
653
+ saveFilenameTemplateData() {
654
654
  const optionsElement = this.doc.createElement("script");
655
655
  optionsElement.type = "application/json";
656
656
  optionsElement.setAttribute(SCRIPT_OPTIONS, "");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-core",
3
- "version": "1.2.36",
3
+ "version": "1.2.37",
4
4
  "description": "SingleFile Core",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",