Skip to content

Commit bc652e9

Browse files
bump version
1 parent fec96c7 commit bc652e9

File tree

5 files changed

+32
-44
lines changed

5 files changed

+32
-44
lines changed

lib/single-file.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 18 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "single-filez",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "SingleFileZ",
55
"author": "Gildas Lormeau",
66
"license": "AGPL-3.0-or-later",
@@ -12,8 +12,8 @@
1212
"single-filez": "./cli/single-filez"
1313
},
1414
"dependencies": {
15-
"single-filez-core": "1.0.8",
16-
"single-filez-cli": "1.0.15"
15+
"single-filez-core": "1.0.9",
16+
"single-filez-cli": "1.0.16"
1717
},
1818
"devDependencies": {
1919
"@rollup/plugin-node-resolve": "13.3.0",

rollup.config.dev.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const PLUGINS = [resolve({ moduleDirectories: [".."] })];
55
const EXTERNAL = ["single-filez-core"];
66

77
export default [{
8-
input: ["single-filez-core/index.js"],
8+
input: ["single-filez-core/single-file.js"],
99
output: [{
1010
file: "lib/single-file.js",
1111
format: "umd",
@@ -15,7 +15,7 @@ export default [{
1515
plugins: PLUGINS,
1616
external: EXTERNAL
1717
}, {
18-
input: ["single-filez-core/processors/frame-tree/content/content-frame-tree.js"],
18+
input: ["single-filez-core/single-file-frames.js"],
1919
output: [{
2020
file: "lib/single-file-frames.js",
2121
format: "umd",
@@ -35,7 +35,7 @@ export default [{
3535
plugins: PLUGINS,
3636
external: EXTERNAL
3737
}, {
38-
input: ["single-filez-core/processors/hooks/content/content-hooks-web.js"],
38+
input: ["single-filez-core/single-file-hooks.js"],
3939
output: [{
4040
file: "lib/single-file-hooks.js",
4141
format: "iife",
@@ -44,7 +44,7 @@ export default [{
4444
plugins: PLUGINS,
4545
external: EXTERNAL
4646
}, {
47-
input: ["single-filez-core/processors/hooks/content/content-hooks-frames-web.js"],
47+
input: ["single-filez-core/single-file-hooks-frames.js"],
4848
output: [{
4949
file: "lib/single-file-hooks-frames.js",
5050
format: "iife",
@@ -53,7 +53,7 @@ export default [{
5353
plugins: PLUGINS,
5454
external: EXTERNAL
5555
}, {
56-
input: ["single-filez-core/common/content-infobar-web.js"],
56+
input: ["single-filez-core/single-file-infobar.js"],
5757
output: [{
5858
file: "lib/single-file-infobar.js",
5959
format: "iife",

rollup.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const PLUGINS = [resolve({ moduleDirectories: ["node_modules"] })];
55
const EXTERNAL = ["single-filez-core"];
66

77
export default [{
8-
input: ["single-filez-core/index.js"],
8+
input: ["single-filez-core/single-file.js"],
99
output: [{
1010
file: "lib/single-file.js",
1111
format: "umd",
@@ -15,7 +15,7 @@ export default [{
1515
plugins: PLUGINS,
1616
external: EXTERNAL
1717
}, {
18-
input: ["single-filez-core/processors/frame-tree/content/content-frame-tree.js"],
18+
input: ["single-filez-core/single-file-frames.js"],
1919
output: [{
2020
file: "lib/single-file-frames.js",
2121
format: "umd",
@@ -35,7 +35,7 @@ export default [{
3535
plugins: PLUGINS,
3636
external: EXTERNAL
3737
}, {
38-
input: ["single-filez-core/processors/hooks/content/content-hooks-web.js"],
38+
input: ["single-filez-core/single-file-hooks.js"],
3939
output: [{
4040
file: "lib/single-file-hooks.js",
4141
format: "iife",
@@ -44,7 +44,7 @@ export default [{
4444
plugins: PLUGINS,
4545
external: EXTERNAL
4646
}, {
47-
input: ["single-filez-core/processors/hooks/content/content-hooks-frames-web.js"],
47+
input: ["single-filez-core/single-file-hooks-frames.js"],
4848
output: [{
4949
file: "lib/single-file-hooks-frames.js",
5050
format: "iife",
@@ -53,7 +53,7 @@ export default [{
5353
plugins: PLUGINS,
5454
external: EXTERNAL
5555
}, {
56-
input: ["single-filez-core/common/content-infobar-web.js"],
56+
input: ["single-filez-core/single-file-infobar.js"],
5757
output: [{
5858
file: "lib/single-file-infobar.js",
5959
format: "iife",

0 commit comments

Comments
 (0)