Package Exports
- @luminfire/uppy-plugin-brilliant-storage
- @luminfire/uppy-plugin-brilliant-storage/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@luminfire/uppy-plugin-brilliant-storage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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
- Commit all changes, including changelog entry
- Run
npm version major | minor | patch --no-git-tag-version
- Merge to
master
- Tag with semantic versioning
- Ensure the public repo has the up-to-date code
- Run
npm publish