Skip to content

Commit 4a705d6

Browse files
committed
run prettier
1 parent f60effb commit 4a705d6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

scripts/rollup.config.factory.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function esmConfig({ elementName, className } = {}) {
1414
},
1515
plugins: [
1616
resolve(),
17-
commonjs(),
17+
commonjs()
1818
// terser()
1919
],
2020
external: id => id.startsWith("..")
@@ -33,7 +33,7 @@ function umdConfig({ elementName, className } = {}) {
3333
plugins: [
3434
resolve(),
3535
commonjs(),
36-
babel(),
36+
babel()
3737
// uglify()
3838
],
3939
external: id => id.startsWith("..")
@@ -75,9 +75,7 @@ function umdMinify({ elementName, className } = {}) {
7575
sourcemap: false,
7676
name: className
7777
},
78-
plugins: [
79-
uglify()
80-
],
78+
plugins: [uglify()],
8179
external: id => id.startsWith("..")
8280
};
8381
}

0 commit comments

Comments
 (0)