From 0883375b6c598c5cae222ce5aaebde1bd491c193 Mon Sep 17 00:00:00 2001 From: Markus Sanin Date: Mon, 24 Jul 2023 09:38:58 +0200 Subject: [PATCH 1/2] fix README & LICENSE rollup --- liquid-fire/rollup.config.mjs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/liquid-fire/rollup.config.mjs b/liquid-fire/rollup.config.mjs index fd20197c..1c70e1a3 100644 --- a/liquid-fire/rollup.config.mjs +++ b/liquid-fire/rollup.config.mjs @@ -52,14 +52,6 @@ export default { addon.keepAssets(['**/*.css']), // Remove leftover build artifacts when starting a new build. - addon.clean(), - - // Copy Readme and License into published package - copy({ - targets: [ - { src: '../README.md', dest: '.' }, - { src: '../LICENSE.md', dest: '.' }, - ], - }), + addon.clean() ], }; From fc70cf2cc56a726875700225f8d48f54c3ba4c4d Mon Sep 17 00:00:00 2001 From: Markus Sanin Date: Mon, 24 Jul 2023 09:41:33 +0200 Subject: [PATCH 2/2] Remove unused import --- liquid-fire/rollup.config.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/liquid-fire/rollup.config.mjs b/liquid-fire/rollup.config.mjs index 1c70e1a3..ea97659a 100644 --- a/liquid-fire/rollup.config.mjs +++ b/liquid-fire/rollup.config.mjs @@ -1,5 +1,4 @@ import { babel } from '@rollup/plugin-babel'; -import copy from 'rollup-plugin-copy'; import { Addon } from '@embroider/addon-dev/rollup'; const addon = new Addon({