Skip to content

Commit 4f7443a

Browse files
committed
distribute non-minified version, fixes #121
1 parent b3c79e7 commit 4f7443a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

rollup.config.mjs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,21 @@ export default [
2121
plugins: [
2222
typescript(),
2323
buble(),
24-
terser()
24+
],
25+
},
26+
{
27+
input: "src/index.ts",
28+
output: [
29+
{
30+
file: "dist/index.min.js",
31+
format: "cjs",
32+
sourcemap: true,
33+
},
34+
],
35+
plugins: [
36+
typescript(),
37+
buble(),
38+
terser(),
2539
],
2640
},
2741
{

0 commit comments

Comments
 (0)