diff options
Diffstat (limited to 'rollup.config.js')
-rw-r--r-- | rollup.config.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rollup.config.js b/rollup.config.js index 1f46f2a..75db905 100644 --- a/rollup.config.js +++ b/rollup.config.js | |||
@@ -3,6 +3,7 @@ import commonjs from '@rollup/plugin-commonjs'; | |||
3 | import terser from '@rollup/plugin-terser'; | 3 | import terser from '@rollup/plugin-terser'; |
4 | import { existsSync } from 'fs'; | 4 | import { existsSync } from 'fs'; |
5 | import { join } from 'path'; | 5 | import { join } from 'path'; |
6 | import { bundleStats } from 'rollup-plugin-bundle-stats'; | ||
6 | 7 | ||
7 | const production = !process.env.ROLLUP_WATCH; | 8 | const production = !process.env.ROLLUP_WATCH; |
8 | 9 | ||
@@ -53,6 +54,7 @@ const general = { | |||
53 | node(), | 54 | node(), |
54 | commonjs(), | 55 | commonjs(), |
55 | production && terser(), | 56 | production && terser(), |
57 | // bundleStats(), | ||
56 | ], | 58 | ], |
57 | } | 59 | } |
58 | 60 | ||