mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 09:59:58 +01:00
chore(release): v2.0.1 🎉
This commit is contained in:
parent
6e0df2fb25
commit
1ea650860c
@ -1,3 +1,12 @@
|
||||
## [2.0.1](https://github.com/kaisermann/svelte-i18n/compare/v2.0.0...v2.0.1) (2019-11-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 🐛 fallback behaviour and simplify API contact points ([64e69eb](https://github.com/kaisermann/svelte-i18n/commit/64e69eb3c0f62754570429a87450ff53eb29973a))
|
||||
|
||||
|
||||
|
||||
# [2.0.0](https://github.com/kaisermann/svelte-i18n/compare/v1.1.2-beta...v2.0.0) (2019-11-22)
|
||||
|
||||
|
||||
|
789
package-lock.json
generated
789
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "svelte-i18n",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"main": "dist/i18n.js",
|
||||
"module": "dist/i18n.mjs",
|
||||
"bin": {
|
||||
|
@ -7,12 +7,7 @@ export function defineMessages(i: Record<string, MessageObject>) {
|
||||
return i
|
||||
}
|
||||
|
||||
export {
|
||||
$locale as locale,
|
||||
setInitialLocale,
|
||||
// @deprecated
|
||||
setInitialLocale as waitInitialLocale,
|
||||
} from './stores/locale'
|
||||
export { $locale as locale, setInitialLocale } from './stores/locale'
|
||||
export {
|
||||
$dictionary as dictionary,
|
||||
$locales as locales,
|
||||
@ -28,3 +23,7 @@ export {
|
||||
flushQueue as waitLocale,
|
||||
registerLocaleLoader as register,
|
||||
} from './includes/loaderQueue'
|
||||
|
||||
// @deprecated
|
||||
export { getClientLocale } from './includes/utils'
|
||||
export { setInitialLocale as waitInitialLocale } from './stores/locale'
|
||||
|
Loading…
Reference in New Issue
Block a user