@jsverse/transloco-validator 7.0.0 → 8.0.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,24 +1,31 @@
1
- # Changelog
1
+ # 8.0.0 (2025-09-14)
2
2
 
3
- This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
3
+ ### 💡 Refactor
4
4
 
5
- # [7.0.0](https://github.com/jsverse/transloco/compare/transloco-validator-6.0.0...transloco-validator-7.0.0) (2024-03-23)
5
+ - **validator:** 💡 update node version ([1ea9bf2f](https://github.com/jsverse/transloco/commit/1ea9bf2f))
6
6
 
7
+ ### ⚠ BREAKING CHANGES
7
8
 
8
- ### chore
9
+ - **validator:** 🧨 Minimum node version is now 18
9
10
 
10
- * **validator:** 🤖 update package scope ([80737e7](https://github.com/jsverse/transloco/commit/80737e7e2568db0361987a4946a675426dcea867))
11
+ ### ❤️ Thank You
11
12
 
13
+ - chaitanay94
14
+ - Shahar Kazaz
12
15
 
13
- ### BREAKING CHANGES
16
+ ## [7.0.1](https://github.com/jsverse/transloco/compare/transloco-validator-7.0.0...transloco-validator-7.0.1) (2024-05-31)
14
17
 
15
- * **validator:** 🧨 The package is now published under the jsverse scope
18
+ # [7.0.0](https://github.com/jsverse/transloco/compare/transloco-validator-6.0.0...transloco-validator-7.0.0) (2024-03-23)
16
19
 
20
+ ### chore
17
21
 
22
+ - **validator:** 🤖 update package scope ([80737e7](https://github.com/jsverse/transloco/commit/80737e7e2568db0361987a4946a675426dcea867))
18
23
 
19
- # [6.0.0](https://github.com/jsverse/transloco/compare/transloco-validator-5.0.1...transloco-validator-6.0.0) (2024-03-23)
24
+ ### BREAKING CHANGES
20
25
 
26
+ - **validator:** 🧨 The package is now published under the jsverse scope
21
27
 
28
+ # [6.0.0](https://github.com/jsverse/transloco/compare/transloco-validator-5.0.1...transloco-validator-6.0.0) (2024-03-23)
22
29
 
23
30
  ## [5.0.1](https://github.com/jsverse/transloco/compare/transloco-validator-5.0.0...transloco-validator-5.0.1) (2023-08-01)
24
31
 
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # Transloco Validator
2
2
 
3
- Please visit the [official Transloco docs](https://jsverse.github.io/transloco/docs/tools/validator).
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": "7.0.0",
3
+ "version": "8.0.0",
4
4
  "description": "Transloco translation files validator",
5
- "main": "./src/index.js",
5
+ "main": "src/lib/transloco-validator.js",
6
6
  "engines": {
7
- "node": ">=16"
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.github.io/transloco/docs/tools/validator",
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
- "angular",
25
- "angular 2",
24
+ "Angular",
26
25
  "i18n",
27
- "transloco",
28
- "translate",
29
- "translation validator",
26
+ "Translate",
27
+ "Angular Translate",
28
+ "Transloco",
29
+ "Translation Validator",
30
30
  "JSON validator",
31
- "validator"
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;