1.0.0 • Published 3 years ago

@bbc/webpack-s3-uploader v1.0.0

Weekly downloads
145
License
Apache-2.0
Repository
github
Last release
3 years ago

npm version

webpack-s3-uploader

Webpack plugin to push assets to s3

Context

There are already a number of webpack plugins out in the wild that can push assets to S3, so you might be wondering why we rolled out our own. In very simple terms, we had issues with all the other ones and the effort involved in just creating our own highly outweighed the effort we were putting into debugging the existing ones.

Usage

In webpack.config.js:

const WebpackS3Uploader = require('@bbc/webpack-s3-uploader');

{
  ...
  plugins: [
    new WebpackS3Uploader({
      whitelist: ['js', 'css'],
      logger: console,
      basePath: 'webpack/assets',
      directory: './web/assets',
      s3Options: {
        region: 'eu-west-1',
        httpOptions: {
          timeout: 240000,
          connectTimeout: 240000
        }
      },
      s3UploadOptions: {
        ACL: 'public-read',
        CacheControl: 'public, max-age=15552000, immutable',
      }
    })
  ]
}

Options

  • whitelist: Required An array of extensions to include in the upload. For example - 'js', 'css'
  • directory: Required Provide a directory to upload
  • s3Options: Provide options for S3 object s3Config
  • s3UploadOptions: Provide upload options putObject
  • logger: A logger object that supports the standard .info, .log, .error, etc API
  • basePath: Provide the namespace where upload files on S3

Commands

  • yarn test - Run test suite
  • yarn test:coverage - Run test suite with code coverage
  • yarn build - Run build
  • yarn lint - Runs linting over src/ and test/
1.0.5-WEBPACK5

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

6 years ago