-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(detect-locale): esm import not published
- Loading branch information
Sergio
committed
Jan 1, 2021
1 parent
825fd3a
commit 0b7464d
Showing
2 changed files
with
14 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import detectLocaleModule from '../index.js' | ||
|
||
export const detect = detectLocaleModule.detect | ||
export const multipleDetect = detectLocaleModule.multipleDetect | ||
export const fromCookie = detectLocaleModule.fromCookie | ||
export const fromHtmlTag = detectLocaleModule.fromHtmlTag | ||
export const fromNavigator = detectLocaleModule.fromNavigator | ||
export const fromPath = detectLocaleModule.fromPath | ||
export const fromStorage = detectLocaleModule.fromStorage | ||
export const fromSubdomain = detectLocaleModule.fromSubdomain | ||
export const fromUrl = detectLocaleModule.fromUrl |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "module" | ||
} |