From 305751a36162f47c36d3180e799b53cd41361ec8 Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Thu, 10 Feb 2022 20:32:52 +0100 Subject: [PATCH] Build the new version --- rollup.config.js | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 604b43a..50be708 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -99,15 +99,8 @@ const getOutput = (baseDir) => { ]; }; -export default [ - { - input: join(__dirname, "src", "autoinit.js"), - output: getOutput(outputDir), - plugins: getPlugins(true), - }, - { - input: join(__dirname, "src", "shareon.js"), - output: getOutput(join(outputDir, "noinit")), - plugins: getPlugins(false), - }, -]; +export default { + input: join(__dirname, "src", "index.js"), + output: getOutput(outputDir), + plugins: getPlugins(true), +};