From 316808933d9276ad88089d0962d2b76c905cf767 Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Wed, 14 Dec 2022 16:47:49 +0530 Subject: [PATCH] chore(tools/builder): silent deprecation warning from rollup --- tools/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/builder.js b/tools/builder.js index ace2d8e3d0..37efb17641 100755 --- a/tools/builder.js +++ b/tools/builder.js @@ -80,12 +80,12 @@ const Builder = { warn(warning); } }, - inlineDynamicImports: true, }; /** @type {import("rollup").OutputOptions} */ const outputOptions = { file: outPath, + inlineDynamicImports: true, format: "iife", sourcemap: true, banner: `window.respecVersion = "${version}";\n`,