@graphcommerce/lingui-next 2.1.10 → 2.2.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1600](https://github.com/graphcommerce-org/graphcommerce/pull/1600) [`127593b65`](https://github.com/graphcommerce-org/graphcommerce/commit/127593b65b0cc367dcb38ba88b589a2abcca75c2) Thanks [@paales](https://github.com/paales)! - Make sure \*.ts files are also scanned when extracting lingui files
8
+
9
+ ## 2.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#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
14
+
15
+ ## 2.1.11
16
+
17
+ ### Patch Changes
18
+
19
+ - [#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
20
+
3
21
  ## 2.1.10
4
22
 
5
23
  ### Patch Changes
package/config.js CHANGED
@@ -16,7 +16,12 @@ 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>/**/!(*.d).ts',
22
+ '<rootDir>/../../packages/**/*.tsx',
23
+ '<rootDir>/../../packages/**/!(*.d).ts',
24
+ ],
20
25
  exclude: ['**/node_modules/!(@graphcommerce)/**'],
21
26
  },
22
27
  ],
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.10",
5
+ "version": "2.2.1",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
8
  "dev": "tsc -W"
@@ -15,15 +15,15 @@
15
15
  }
16
16
  },
17
17
  "devDependencies": {
18
- "@graphcommerce/eslint-config-pwa": "^4.1.8",
18
+ "@graphcommerce/eslint-config-pwa": "^4.1.10",
19
19
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
20
20
  "@graphcommerce/typescript-config-pwa": "^4.0.3",
21
- "@lingui/conf": "^3.13.2",
21
+ "@lingui/conf": "^3.14.0",
22
22
  "@playwright/test": "^1.21.1"
23
23
  },
24
24
  "peerDependencies": {
25
- "@lingui/react": "^3.13.2",
26
25
  "@lingui/core": "^3.13.2",
26
+ "@lingui/react": "^3.13.2",
27
27
  "make-plural": "^6.2.2",
28
28
  "next": "^12.1.2",
29
29
  "react": "^18.0.0",