Skip to content

uditalias/rollup-s3-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
    })
  ]
}