mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-28 04:34:01 +00:00
* @uppy/core: move `Uppy` class to its own module Fixes: https://github.com/transloadit/uppy/issues/3220 * Rename snapshot file * Update docs * Update website/src/_posts/2021-08-2.0.md Co-authored-by: Merlijn Vos <merlijn@soverin.net> * Update migration guide * Do not bundle preact with non-UI plugin packages Co-authored-by: Merlijn Vos <merlijn@soverin.net>
12 lines
337 B
JavaScript
12 lines
337 B
JavaScript
'use strict'
|
|
|
|
const Uppy = require('./Uppy')
|
|
const UIPlugin = require('./UIPlugin')
|
|
const BasePlugin = require('./BasePlugin')
|
|
const { debugLogger } = require('./loggers')
|
|
|
|
module.exports = Uppy
|
|
module.exports.Uppy = Uppy
|
|
module.exports.UIPlugin = UIPlugin
|
|
module.exports.BasePlugin = BasePlugin
|
|
module.exports.debugLogger = debugLogger
|