Skip to content

Commit

Permalink
add extension-core.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Apr 16, 2021
1 parent e218f1f commit 105ebea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions rollup.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ export default [{
format: "iife",
plugins: []
}]
}, {
input: ["extension/index.js"],
output: [{
file: "dist/extension-core.js",
format: "umd",
name: "extension",
plugins: []
}]
}, {
input: ["extension/core/content/content.js"],
output: [{
Expand Down
8 changes: 8 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ export default [{
format: "iife",
plugins: [terser()]
}]
}, {
input: ["extension/index.js"],
output: [{
file: "dist/extension-core.js",
format: "umd",
name: "extension",
plugins: [terser()]
}]
}, {
input: ["extension/core/content/content.js"],
output: [{
Expand Down

0 comments on commit 105ebea

Please sign in to comment.