Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Jun 13, 2022
1 parent fec96c7 commit bc652e9
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 44 deletions.
2 changes: 1 addition & 1 deletion lib/single-file.js

Large diffs are not rendered by default.

48 changes: 18 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "single-filez",
"version": "1.0.8",
"version": "1.0.9",
"description": "SingleFileZ",
"author": "Gildas Lormeau",
"license": "AGPL-3.0-or-later",
Expand All @@ -12,8 +12,8 @@
"single-filez": "./cli/single-filez"
},
"dependencies": {
"single-filez-core": "1.0.8",
"single-filez-cli": "1.0.15"
"single-filez-core": "1.0.9",
"single-filez-cli": "1.0.16"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.3.0",
Expand Down
10 changes: 5 additions & 5 deletions rollup.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const PLUGINS = [resolve({ moduleDirectories: [".."] })];
const EXTERNAL = ["single-filez-core"];

export default [{
input: ["single-filez-core/index.js"],
input: ["single-filez-core/single-file.js"],
output: [{
file: "lib/single-file.js",
format: "umd",
Expand All @@ -15,7 +15,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/frame-tree/content/content-frame-tree.js"],
input: ["single-filez-core/single-file-frames.js"],
output: [{
file: "lib/single-file-frames.js",
format: "umd",
Expand All @@ -35,7 +35,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/hooks/content/content-hooks-web.js"],
input: ["single-filez-core/single-file-hooks.js"],
output: [{
file: "lib/single-file-hooks.js",
format: "iife",
Expand All @@ -44,7 +44,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/hooks/content/content-hooks-frames-web.js"],
input: ["single-filez-core/single-file-hooks-frames.js"],
output: [{
file: "lib/single-file-hooks-frames.js",
format: "iife",
Expand All @@ -53,7 +53,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/common/content-infobar-web.js"],
input: ["single-filez-core/single-file-infobar.js"],
output: [{
file: "lib/single-file-infobar.js",
format: "iife",
Expand Down
10 changes: 5 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const PLUGINS = [resolve({ moduleDirectories: ["node_modules"] })];
const EXTERNAL = ["single-filez-core"];

export default [{
input: ["single-filez-core/index.js"],
input: ["single-filez-core/single-file.js"],
output: [{
file: "lib/single-file.js",
format: "umd",
Expand All @@ -15,7 +15,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/frame-tree/content/content-frame-tree.js"],
input: ["single-filez-core/single-file-frames.js"],
output: [{
file: "lib/single-file-frames.js",
format: "umd",
Expand All @@ -35,7 +35,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/hooks/content/content-hooks-web.js"],
input: ["single-filez-core/single-file-hooks.js"],
output: [{
file: "lib/single-file-hooks.js",
format: "iife",
Expand All @@ -44,7 +44,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/processors/hooks/content/content-hooks-frames-web.js"],
input: ["single-filez-core/single-file-hooks-frames.js"],
output: [{
file: "lib/single-file-hooks-frames.js",
format: "iife",
Expand All @@ -53,7 +53,7 @@ export default [{
plugins: PLUGINS,
external: EXTERNAL
}, {
input: ["single-filez-core/common/content-infobar-web.js"],
input: ["single-filez-core/single-file-infobar.js"],
output: [{
file: "lib/single-file-infobar.js",
format: "iife",
Expand Down

0 comments on commit bc652e9

Please sign in to comment.