@jsverse/transloco-validator 7.0.1 → 8.0.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 +18 -3
- package/README.md +1 -1
- package/package.json +13 -12
- package/src/lib/transloco-validator.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
## 8.0.1 (2025-09-26)
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This was a version bump only for transloco-validator to align it with other projects, there were no code changes.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# 8.0.0 (2025-09-14)
|
|
6
|
+
|
|
7
|
+
### 💡 Refactor
|
|
8
|
+
|
|
9
|
+
- **validator:** 💡 update node version ([1ea9bf2f](https://github.com/jsverse/transloco/commit/1ea9bf2f))
|
|
10
|
+
|
|
11
|
+
### ⚠ BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
- **validator:** 🧨 Minimum node version is now 18
|
|
14
|
+
|
|
15
|
+
### ❤️ Thank You
|
|
16
|
+
|
|
17
|
+
- chaitanay94
|
|
18
|
+
- Shahar Kazaz
|
|
19
|
+
|
|
20
|
+
## [7.0.1](https://github.com/jsverse/transloco/compare/transloco-validator-7.0.0...transloco-validator-7.0.1) (2024-05-31)
|
|
6
21
|
|
|
7
22
|
# [7.0.0](https://github.com/jsverse/transloco/compare/transloco-validator-6.0.0...transloco-validator-7.0.0) (2024-03-23)
|
|
8
23
|
|
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Transloco Validator
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Discover more about this plugin and how it can enhance your workflow in the [official Transloco documentation](https://jsverse.gitbook.io/transloco/tools/validator).
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsverse/transloco-validator",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Transloco translation files validator",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "src/lib/transloco-validator.js",
|
|
6
6
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
7
|
+
"node": ">=18"
|
|
8
8
|
},
|
|
9
9
|
"bin": {
|
|
10
10
|
"transloco-validator": "src/index.js"
|
|
@@ -15,24 +15,25 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/jsverse/transloco/issues"
|
|
17
17
|
},
|
|
18
|
-
"homepage": "https://jsverse.
|
|
18
|
+
"homepage": "https://jsverse.gitbook.io/transloco/tools/validator",
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
21
|
"url": "https://github.com/jsverse/transloco"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
|
-
"
|
|
25
|
-
"angular 2",
|
|
24
|
+
"Angular",
|
|
26
25
|
"i18n",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
26
|
+
"Translate",
|
|
27
|
+
"Angular Translate",
|
|
28
|
+
"Transloco",
|
|
29
|
+
"Translation Validator",
|
|
30
30
|
"JSON validator",
|
|
31
|
-
"
|
|
31
|
+
"Validator"
|
|
32
32
|
],
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"find-duplicated-property-keys": "^1.2.9"
|
|
36
36
|
},
|
|
37
|
-
"type": "commonjs"
|
|
38
|
-
|
|
37
|
+
"type": "commonjs",
|
|
38
|
+
"types": "./src/index.d.ts"
|
|
39
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = default_1;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
const fs_1 = tslib_1.__importDefault(require("fs"));
|
|
5
6
|
const find_duplicated_property_keys_1 = tslib_1.__importDefault(require("find-duplicated-property-keys"));
|
|
@@ -15,4 +16,3 @@ function default_1(translationFilePaths) {
|
|
|
15
16
|
}
|
|
16
17
|
});
|
|
17
18
|
}
|
|
18
|
-
exports.default = default_1;
|