@open-xchange/vite-plugin-i18next-gettext 0.0.2 → 0.0.3

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3] - 2024-08-12
4
+
5
+ - fix: bump `i18next-parser` (<https://github.com/i18next/i18next-parser/issues/1045>)
6
+
3
7
  ## [0.0.2] - 2024-07-26
4
8
 
5
9
  - fix: match po files against relative module path
package/README.md CHANGED
@@ -12,8 +12,6 @@ This plugin is designed to work together with the i18next plugin `@open-xchange/
12
12
 
13
13
  ## Usage
14
14
 
15
- ### Vite
16
-
17
15
  Add the plugin to your Vite configuration:
18
16
 
19
17
  ```ts
@@ -39,7 +37,7 @@ export default defineConfig(() => {
39
37
  })
40
38
  ```
41
39
 
42
- #### Options
40
+ ### Options
43
41
 
44
42
  | Name | Type | Default | Description |
45
43
  | - | - | - | - |
package/dist/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  import type { Plugin } from "vite";
2
+ /**
3
+ * Configuration options for the plugin "@open-xchange/vite-plugin-i18next-gettext".
4
+ */
2
5
  export interface VitePluginI18nextGettextOptions {
3
6
  /**
4
7
  * Glob pattern(s) for all `.po` files containing the translations.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/vite-plugin-i18next-gettext",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Vite integration of i18next using gettext",
5
5
  "repository": {
6
6
  "url": "https://gitlab.open-xchange.com/fspd/npm-packages/vite-plugin-i18next-gettext"
@@ -9,7 +9,7 @@
9
9
  "engines": {
10
10
  "node": "18.18.0 || ^20.9.0 || >=21.1.0"
11
11
  },
12
- "packageManager": "yarn@4.3.1",
12
+ "packageManager": "yarn@4.4.0",
13
13
  "type": "module",
14
14
  "exports": "./dist/index.js",
15
15
  "scripts": {
@@ -23,19 +23,19 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "gettext-converter": "1.3.0",
26
- "i18next-parser": "9.0.0",
26
+ "i18next-parser": "9.0.2",
27
27
  "picomatch": "4.0.2",
28
28
  "vinyl-fs": "4.0.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@open-xchange/linter-presets": "0.1.10",
32
- "@types/node": "20.14.12",
31
+ "@open-xchange/linter-presets": "0.4.3",
32
+ "@types/node": "22.1.0",
33
33
  "@types/vinyl-fs": "3.0.5",
34
- "eslint": "9.7.0",
35
- "husky": "9.1.2",
34
+ "eslint": "9.8.0",
35
+ "husky": "9.1.4",
36
36
  "typescript": "5.5.4",
37
37
  "vinyl": "3.0.0",
38
- "vite": "5.3.5"
38
+ "vite": "5.4.0"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "vite": "^5.3"