-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip Upgrade NodeJS to v16 - Fixed module entry points (#172)
- Loading branch information
Showing
8 changed files
with
32 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import api from './core/api/index.js' | ||
export default api | ||
|
||
export * from './core/api/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import client from './core/client/index.js' | ||
export default client | ||
|
||
export * from './core/client/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import common from './core/common/index.js' | ||
export default common | ||
|
||
export * from './core/common/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import api from './map/api/index.js' | ||
export default api | ||
|
||
export * from './map/api/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import client from './map/client/globe/index.js' | ||
export default client | ||
|
||
export * from './map/client/globe/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import client from './map/client/index.js' | ||
export default client | ||
|
||
export * from './map/client/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import client from './map/client/map/index.js' | ||
export default client | ||
|
||
export * from './map/client/map/index.js' |
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,5 @@ | ||
// Need this as export * only exports named exports but not the default export | ||
import common from './core/common/index.js' | ||
export default common | ||
|
||
export * from './map/common/index.js' |