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 ab98470 commit 0cbc6e2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 43 deletions.
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-file",
"version": "1.0.9",
"version": "1.0.10",
"description": "SingleFile",
"author": "Gildas Lormeau",
"license": "AGPL-3.0-or-later",
Expand All @@ -12,8 +12,8 @@
"single-file": "./cli/single-file"
},
"dependencies": {
"single-file-core": "1.0.15",
"single-file-cli": "1.0.11"
"single-file-core": "1.0.16",
"single-file-cli": "1.0.12"
},
"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-file-core"];

export default [{
input: ["single-file-core/index.js"],
input: ["single-file-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-file-core/processors/frame-tree/content/content-frame-tree.js"],
input: ["single-file-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-file-core/processors/hooks/content/content-hooks-web.js"],
input: ["single-file-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-file-core/processors/hooks/content/content-hooks-frames-web.js"],
input: ["single-file-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-file-core/common/content-infobar-web.js"],
input: ["single-file-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-file-core"];

export default [{
input: ["single-file-core/index.js"],
input: ["single-file-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-file-core/processors/frame-tree/content/content-frame-tree.js"],
input: ["single-file-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-file-core/processors/hooks/content/content-hooks-web.js"],
input: ["single-file-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-file-core/processors/hooks/content/content-hooks-frames-web.js"],
input: ["single-file-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-file-core/common/content-infobar-web.js"],
input: ["single-file-core/single-file-infobar.js"],
output: [{
file: "lib/single-file-infobar.js",
format: "iife",
Expand Down

0 comments on commit 0cbc6e2

Please sign in to comment.