Skip to content

Commit

Permalink
rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed May 31, 2022
1 parent 9cb8e37 commit 7546c68
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/single-file-extension-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -7610,7 +7610,7 @@ table {
const { docContent, origDocContent, resources, url } = await extract(content, {
password,
prompt,
shadowRootScriptURL: new URL("/lib/single-file-extension-editor-init-web.js", document.baseURI).href,
shadowRootScriptURL: new URL("/lib/single-file-extension-editor-init.js", document.baseURI).href,
zipOptions
});
pageResources = resources;
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default [{
plugins: []
}]
}, {
input: ["src/single-file/single-file-hooks-web.js"],
input: ["src/single-file/single-file-hooks.js"],
output: [{
file: "lib/single-file-hooks.js",
format: "iife",
Expand All @@ -81,7 +81,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["src/single-file/single-file-hooks-frames-web.js"],
input: ["src/single-file/single-file-hooks-frames.js"],
output: [{
file: "lib/single-file-hooks-frames.js",
format: "iife",
Expand All @@ -90,7 +90,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["src/single-file/single-file-infobar-web.js"],
input: ["src/single-file/single-file-infobar.js"],
output: [{
file: "lib/single-file-infobar.js",
format: "iife",
Expand Down
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default [{
plugins: [terser()]
}]
}, {
input: ["src/single-file/single-file-hooks-web.js"],
input: ["src/single-file/single-file-hooks.js"],
output: [{
file: "lib/single-file-hooks.js",
format: "iife",
Expand All @@ -81,7 +81,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["src/single-file/single-file-hooks-frames-web.js"],
input: ["src/single-file/single-file-hooks-frames.js"],
output: [{
file: "lib/single-file-hooks-frames.js",
format: "iife",
Expand All @@ -90,7 +90,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["src/single-file/single-file-infobar-web.js"],
input: ["src/single-file/single-file-infobar.js"],
output: [{
file: "lib/single-file-infobar.js",
format: "iife",
Expand Down
2 changes: 1 addition & 1 deletion src/extension/ui/content/content-ui-editor-web.js
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ table {
const { docContent, origDocContent, resources, url } = await extract(content, {
password,
prompt,
shadowRootScriptURL: new URL("/lib/single-file-extension-editor-init-web.js", document.baseURI).href,
shadowRootScriptURL: new URL("/lib/single-file-extension-editor-init.js", document.baseURI).href,
zipOptions
});
pageResources = resources;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7546c68

Please sign in to comment.