From fb6085598d0249f35a505edee6904fd79a5f8b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Hodierne?= Date: Mon, 13 Apr 2020 02:28:54 +0200 Subject: [PATCH] fix: mark prop-types and uuid as external to avoid bundling them (#582) --- rollup.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index a9353b01..ae23a659 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -51,5 +51,6 @@ export default { }), resolve(), commonjs() - ] + ], + external: ["prop-types", "uuid"] };