@graphcommerce/lingui-next 2.1.9 → 2.2.0

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1591](https://github.com/graphcommerce-org/graphcommerce/pull/1591) [`79f057889`](https://github.com/graphcommerce-org/graphcommerce/commit/79f057889847c61d75db7f567fd6575a57cf1022) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Remove need for query rootCategory
8
+
9
+ ## 2.1.11
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1543](https://github.com/graphcommerce-org/graphcommerce/pull/1543) [`1e0a8b0a3`](https://github.com/graphcommerce-org/graphcommerce/commit/1e0a8b0a3842d150fdfd6e040b408a6fb3f76c7c) Thanks [@paales](https://github.com/paales)! - update lingui version
14
+
15
+ ## 2.1.10
16
+
17
+ ### Patch Changes
18
+
19
+ - [#1532](https://github.com/graphcommerce-org/graphcommerce/pull/1532) [`aec1f42fa`](https://github.com/graphcommerce-org/graphcommerce/commit/aec1f42fa2c02764c3071bfcccbf5eb6a13fbaef) Thanks [@paales](https://github.com/paales)! - fix: Error: useLingui hook was used without I18nProvider
20
+
3
21
  ## 2.1.9
4
22
 
5
23
  ### Patch Changes
package/config.js CHANGED
@@ -16,7 +16,11 @@ function linguiNextConfig(config) {
16
16
  catalogs: [
17
17
  {
18
18
  path: 'locales/{locale}',
19
- include: ['<rootDir>/**/*.tsx', '<rootDir>/../../packages/**/*.tsx'],
19
+ include: [
20
+ '<rootDir>/**/*.tsx',
21
+ '<rootDir>/../../packages/**/*.tsx',
22
+ '<rootDir>/../../packages/**/*.ts',
23
+ ],
20
24
  exclude: ['**/node_modules/!(@graphcommerce)/**'],
21
25
  },
22
26
  ],
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": "2.1.9",
5
+ "version": "2.2.0",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
8
  "dev": "tsc -W"
@@ -14,21 +14,16 @@
14
14
  "project": "./tsconfig.json"
15
15
  }
16
16
  },
17
- "dependencies": {
18
- "@lingui/core": "^3.13.3",
19
- "@lingui/react": "^3.13.3",
20
- "babel-plugin-macros": "^3.1.0"
21
- },
22
17
  "devDependencies": {
23
18
  "@graphcommerce/eslint-config-pwa": "^4.1.8",
24
19
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
25
20
  "@graphcommerce/typescript-config-pwa": "^4.0.3",
26
- "@lingui/conf": "^3.13.2",
21
+ "@lingui/conf": "^3.14.0",
27
22
  "@playwright/test": "^1.21.1"
28
23
  },
29
24
  "peerDependencies": {
30
- "@lingui/react": "^3.13.2",
31
25
  "@lingui/core": "^3.13.2",
26
+ "@lingui/react": "^3.13.2",
32
27
  "make-plural": "^6.2.2",
33
28
  "next": "^12.1.2",
34
29
  "react": "^18.0.0",