@graphcommerce/lingui-next 6.2.0-canary.40 → 6.2.0-canary.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/components/LinguiProvider.tsx +0 -8
- package/config.js +1 -13
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { storefrontConfig, storefrontConfigDefault } from '@graphcommerce/next-ui'
|
|
2
2
|
import { i18n, Messages } from '@lingui/core'
|
|
3
3
|
import { I18nProvider, I18nProviderProps } from '@lingui/react'
|
|
4
|
-
import { nl, en, fr } from 'make-plural/plurals'
|
|
5
4
|
import React, { useMemo } from 'react'
|
|
6
5
|
import { MessageLoader, SyncMessageLoader } from '../types'
|
|
7
6
|
|
|
@@ -12,13 +11,6 @@ export type LinguiProviderProps = Omit<I18nProviderProps, 'i18n'> & {
|
|
|
12
11
|
locale: string
|
|
13
12
|
}
|
|
14
13
|
|
|
15
|
-
// todo: Load these plurals with a loader, however dynamic imports doesn't support tree shaking so loading them dynamically will load all locales.
|
|
16
|
-
i18n.loadLocaleData({
|
|
17
|
-
nl: { plurals: nl },
|
|
18
|
-
fr: { plurals: fr },
|
|
19
|
-
en: { plurals: en },
|
|
20
|
-
})
|
|
21
|
-
|
|
22
14
|
export const localeConfig = (locale: string = storefrontConfigDefault().locale) =>
|
|
23
15
|
storefrontConfig(locale)?.linguiLocale ?? locale?.split('-')[0]
|
|
24
16
|
|
package/config.js
CHANGED
|
@@ -13,6 +13,7 @@ const { isMonorepo } = require('@graphcommerce/next-config')
|
|
|
13
13
|
function linguiNextConfig(config) {
|
|
14
14
|
const { locales, ...otherConfig } = config
|
|
15
15
|
return {
|
|
16
|
+
orderBy: 'messageId',
|
|
16
17
|
locales: isMonorepo()
|
|
17
18
|
? ['en', 'nl', 'fr', 'de', 'es', 'it']
|
|
18
19
|
: config.locales.map((l) => l?.split('-')[0]),
|
|
@@ -29,19 +30,6 @@ function linguiNextConfig(config) {
|
|
|
29
30
|
exclude: ['**/node_modules/!(@graphcommerce)/**'],
|
|
30
31
|
},
|
|
31
32
|
],
|
|
32
|
-
extractBabelOptions: {
|
|
33
|
-
presets: [
|
|
34
|
-
[
|
|
35
|
-
'next/babel',
|
|
36
|
-
{
|
|
37
|
-
'preset-react': {
|
|
38
|
-
runtime: 'automatic',
|
|
39
|
-
importSource: '@emotion/react',
|
|
40
|
-
},
|
|
41
|
-
},
|
|
42
|
-
],
|
|
43
|
-
],
|
|
44
|
-
},
|
|
45
33
|
sourceLocale: 'en',
|
|
46
34
|
...otherConfig,
|
|
47
35
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/lingui-next",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "6.2.0-canary.
|
|
5
|
+
"version": "6.2.0-canary.42",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "tsc -W"
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@graphcommerce/next-config": "6.2.0-canary.
|
|
19
|
-
"make-plural": "6.2.2"
|
|
18
|
+
"@graphcommerce/next-config": "6.2.0-canary.42"
|
|
20
19
|
},
|
|
21
20
|
"devDependencies": {
|
|
22
|
-
"@graphcommerce/eslint-config-pwa": "6.2.0-canary.
|
|
23
|
-
"@graphcommerce/prettier-config-pwa": "6.2.0-canary.
|
|
24
|
-
"@graphcommerce/typescript-config-pwa": "6.2.0-canary.
|
|
25
|
-
"@lingui/conf": "^
|
|
21
|
+
"@graphcommerce/eslint-config-pwa": "6.2.0-canary.42",
|
|
22
|
+
"@graphcommerce/prettier-config-pwa": "6.2.0-canary.42",
|
|
23
|
+
"@graphcommerce/typescript-config-pwa": "6.2.0-canary.42",
|
|
24
|
+
"@lingui/conf": "^4.2.1"
|
|
26
25
|
},
|
|
27
26
|
"peerDependencies": {
|
|
28
|
-
"@lingui/
|
|
29
|
-
"@lingui/
|
|
27
|
+
"@lingui/core": "^4.2.1",
|
|
28
|
+
"@lingui/react": "^4.2.1",
|
|
29
|
+
"@lingui/macro": "^4.2.1",
|
|
30
30
|
"next": "^13.2.0",
|
|
31
31
|
"react": "^18.2.0",
|
|
32
32
|
"react-dom": "^18.2.0"
|