rollup-s3-plugin
v1.0.2
Published
Uploads compiled assets to s3 after rollup build
Maintainers
Readme
Rollup S3 Plugin
This plugin will upload all built assets to s3
Based on the webpack-s3-plugin by MikaAK so all configurations are the same as webpack-s3-plugin
Install Instructions
$ npm i -D rollup-s3-pluginUsage
// rollup.config.js
import s3Plugin from "rollup-s3-plugin";
module.exports = {
plugins: [
s3Plugin({
// config
})
]
}