aboutsummaryrefslogtreecommitdiffhomepage
path: root/rollup.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'rollup.config.js')
-rw-r--r--rollup.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rollup.config.js b/rollup.config.js
index 1dc3a02..d04eb4e 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -50,6 +50,6 @@ export default [
50 { 50 {
51 input: "src/dumbymap.mjs", 51 input: "src/dumbymap.mjs",
52 }, 52 },
53].map(config => { 53]
54 return { ...general, ...config } 54 .map(config => ({ ...general, ...config }))
55}) 55 .filter((config) => production || config.input.match(/editor/))