Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 913 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 913 Bytes

Uppy BrilliantStorage

BrilliantStorage is an Uppy file uploader plugin, that allows BrilliantStorage to add a unique prefix onto the files being uploaded.

⚠️ This is not an official Uppy plugin, so no support is offered for it. Please use at your own risk.

Installation

$ npm install @luminfire/uppy-plugin-brilliant-storage --save

Usage

const Uppy = require('@uppy/core');
const BrilliantStorage = require('@luminfire/uppy-plugin-brilliant-storage');

const uppy = Uppy();
uppy.use(BrilliantStorage);

Development

Publish a New Release

  1. Commit all changes, including changelog entry
  2. Run npm version major | minor | patch --no-git-tag-version
  3. Merge to master
  4. Tag with semantic versioning
  5. Ensure the public repo has the up-to-date code
  6. Run npm publish