1.0.2 • Published 5 years ago

rollup-s3-plugin v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

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-plugin

Usage

// rollup.config.js

import s3Plugin from "rollup-s3-plugin";

module.exports = {
  plugins: [
    s3Plugin({
      // config
    })
  ]
}