diff --git a/liquid-fire/rollup.config.mjs b/liquid-fire/rollup.config.mjs index fd20197c..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({ @@ -52,14 +51,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() ], };