From 5a7a1b7055a7fc423229e18677bbeb3889294a33 Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Wed, 1 Jan 2020 01:47:48 +0800 Subject: [PATCH] New distribution type: .all.js Co-authored-by: Shirasawa <764798966@qq.com> --- rollup.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/rollup.config.js b/rollup.config.js index ab87059..bda160a 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -61,5 +61,15 @@ export default [ terser(), licensePlugin ] + }, + { + ...base, + output: { ...umd, file: "dist/skinview3d.all.js" }, + plugins: [ + resolve(), + typescript(), + terser(), + licensePlugin + ] } ];