-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
default
interop to public available functions (#6348)
* add `default` interop to public available functions * update changelog
- Loading branch information
1 parent
81f52a2
commit b399e8d
Showing
6 changed files
with
12 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
module.exports = require('./lib/public/colors').default | ||
let colors = require('./lib/public/colors') | ||
module.exports = (colors.__esModule ? colors : { default: colors }).default |
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 +1,2 @@ | ||
module.exports = require('./lib/public/default-config').default | ||
let defaultConfig = require('./lib/public/default-config') | ||
module.exports = (defaultConfig.__esModule ? defaultConfig : { default: defaultConfig }).default |
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 +1,2 @@ | ||
module.exports = require('./lib/public/default-theme').default | ||
let defaultTheme = require('./lib/public/default-theme') | ||
module.exports = (defaultTheme.__esModule ? defaultTheme : { default: defaultTheme }).default |
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 +1,2 @@ | ||
module.exports = require('./lib/public/create-plugin').default | ||
let createPlugin = require('./lib/public/create-plugin') | ||
module.exports = (createPlugin.__esModule ? createPlugin : { default: createPlugin }).default |
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 +1,2 @@ | ||
module.exports = require('./lib/public/resolve-config').default | ||
let resolveConfig = require('./lib/public/resolve-config') | ||
module.exports = (resolveConfig.__esModule ? resolveConfig : { default: resolveConfig }).default |