From cd12ded4d138f55603a1e5717e81709e09600923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois=20Hodierne?= Date: Sun, 12 Apr 2020 14:54:32 +0200 Subject: [PATCH] mark prop-types and uuid as external to avoid bundling them --- rollup.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index a9353b019..ae23a6590 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -51,5 +51,6 @@ export default { }), resolve(), commonjs() - ] + ], + external: ["prop-types", "uuid"] };