Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: export Core as Uppy #3981

Merged
merged 5 commits into from
Aug 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To start the testing suite run:

This will run Cypress in watch-mode, and it will pick up and rebuild any changes to JS files. If you need to change other files (like CSS for example), you need to run the respective `yarn build:*` scripts.

Alternatively the following command is the same as the above, except it doesn't run `build` first:
Alternatively the following command is the same as the above, except it doesnt run `build` first:

yarn e2e:skip-build

Expand Down
2 changes: 1 addition & 1 deletion packages/uppy/index.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Core
export { default as Core, debugLogger } from '@uppy/core'
export { default as Uppy, debugLogger } from '@uppy/core'

// Utilities
export * as server from '@uppy/companion-client'
Expand Down
1 change: 1 addition & 0 deletions packages/uppy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"@uppy/provider-views": "workspace:^",
"@uppy/remote-sources": "workspace:^",
"@uppy/redux-dev-tools": "workspace:^",
"@uppy/remote-sources": "workspace:^",
"@uppy/screen-capture": "workspace:^",
"@uppy/status-bar": "workspace:^",
"@uppy/store-default": "workspace:^",
Expand Down
Loading