-
-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It seems like a breaking change but the library has been released yesterday, so I will not publish a new major again.
- Loading branch information
Showing
6 changed files
with
35 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
/* eslint-disable no-underscore-dangle */ | ||
import * as sharedInternals from './sharedInternals' | ||
import loadable from './loadable' | ||
import library from './library' | ||
import * as loadableExports from './loadable' | ||
import * as libraryExports from './library' | ||
|
||
loadable.lib = library | ||
const { loadable } = loadableExports | ||
loadable.lib = libraryExports.loadable | ||
|
||
const { lazy } = loadableExports | ||
lazy.lib = libraryExports.lazy | ||
|
||
export default loadable | ||
export { default as library } from './library' | ||
export { lazy } | ||
|
||
export { default as loadComponents } from './loadComponents' | ||
export const __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = sharedInternals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters