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

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,16 +1,20 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3] - 2024-08-12
3
+ ## `0.0.4` 2024-Oct-21
4
+
5
+ - chore: fixed repository URL in package.json
6
+
7
+ ## `0.0.3` – 2024-Aug-12
4
8
 
5
9
  - fix: bump `i18next-parser` (<https://github.com/i18next/i18next-parser/issues/1045>)
6
10
 
7
- ## [0.0.2] - 2024-07-26
11
+ ## `0.0.2` 2024-Jul-26
8
12
 
9
13
  - fix: match po files against relative module path
10
14
  - docs: mention `i18next-plugin-pofile-backend` package
11
15
  - chore: remove old license headers
12
16
  - chore: bump deps
13
17
 
14
- ## [0.0.1] - 2024-07-26
18
+ ## `0.0.1` 2024-Jul-26
15
19
 
16
20
  - initial release
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @open-xchange/vite-plugin-i18next-gettext
2
2
 
3
- A Vite plugin that allows using [i18next](https://www.i18next.com/) in source code, while using gettext with `.po` and `.pot` files under the hood.
3
+ A Vite plugin that allows using [i18next](https://www.i18next.com/) in source code with gettext's' `.po` and `.pot` files under the hood.
4
4
 
5
5
  This plugin has the following responsibilities:
6
6
 
package/package.json CHANGED
@@ -1,46 +1,44 @@
1
1
  {
2
- "name": "@open-xchange/vite-plugin-i18next-gettext",
3
- "version": "0.0.3",
4
- "description": "Vite integration of i18next using gettext",
5
- "repository": {
6
- "url": "https://gitlab.open-xchange.com/fspd/npm-packages/vite-plugin-i18next-gettext"
7
- },
8
- "license": "MIT",
9
- "engines": {
10
- "node": "18.18.0 || ^20.9.0 || >=21.1.0"
11
- },
12
- "packageManager": "yarn@4.4.0",
13
- "type": "module",
14
- "exports": "./dist/index.js",
15
- "scripts": {
16
- "prepare": "husky",
17
- "prepack": "yarn build && yarn lint",
18
- "build": "npx --yes rimraf dist && tsc",
19
- "lint": "eslint ."
20
- },
21
- "lint-staged": {
22
- "*.{js,ts,json}": "yarn lint"
23
- },
24
- "dependencies": {
25
- "gettext-converter": "1.3.0",
26
- "i18next-parser": "9.0.2",
27
- "picomatch": "4.0.2",
28
- "vinyl-fs": "4.0.0"
29
- },
30
- "devDependencies": {
31
- "@open-xchange/linter-presets": "0.4.3",
32
- "@types/node": "22.1.0",
33
- "@types/vinyl-fs": "3.0.5",
34
- "eslint": "9.8.0",
35
- "husky": "9.1.4",
36
- "typescript": "5.5.4",
37
- "vinyl": "3.0.0",
38
- "vite": "5.4.0"
39
- },
40
- "peerDependencies": {
41
- "vite": "^5.3"
42
- },
43
- "resolutions": {
44
- "semver": "^7.6.2"
45
- }
46
- }
2
+ "name": "@open-xchange/vite-plugin-i18next-gettext",
3
+ "version": "0.0.4",
4
+ "description": "Vite integration of i18next using gettext",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://gitlab.open-xchange.com/fspd/commons/plugins/-/tree/main/packages/vite-plugin-i18next-gettext"
8
+ },
9
+ "license": "MIT",
10
+ "engines": {
11
+ "node": "18.18.0 || ^20.9.0 || >=21.1.0"
12
+ },
13
+ "packageManager": "yarn@4.5.0",
14
+ "type": "module",
15
+ "exports": "./dist/index.js",
16
+ "scripts": {
17
+ "prepare": "yarn build",
18
+ "prepack": "yarn build && yarn lint",
19
+ "build": "rimraf dist && tsc",
20
+ "lint": "eslint ."
21
+ },
22
+ "dependencies": {
23
+ "gettext-converter": "1.3.0",
24
+ "i18next-parser": "9.0.2",
25
+ "picomatch": "4.0.2",
26
+ "vinyl-fs": "4.0.0"
27
+ },
28
+ "devDependencies": {
29
+ "@open-xchange/linter-presets": "0.8.8",
30
+ "@types/node": "22.7.6",
31
+ "@types/vinyl-fs": "3.0.5",
32
+ "eslint": "9.12.0",
33
+ "rimraf": "6.0.1",
34
+ "typescript": "5.6.3",
35
+ "vinyl": "3.0.0",
36
+ "vite": "5.4.9"
37
+ },
38
+ "peerDependencies": {
39
+ "vite": "^5.3"
40
+ },
41
+ "resolutions": {
42
+ "semver": "^7.6.2"
43
+ }
44
+ }
@@ -1,3 +0,0 @@
1
- {
2
- "typescript.tsdk": "node_modules/typescript/lib"
3
- }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 OX Software GmbH, Germany <info@open-xchange.com>
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.