@jsverse/transloco-utils 7.0.0 โ†’ 7.0.2

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,25 +1,24 @@
1
- # Changelog
1
+ ## 7.0.2 (2024-07-26)
2
2
 
3
- This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
-
5
- # [7.0.0](https://github.com/jsverse/transloco/compare/transloco-utils-6.0.0...transloco-utils-7.0.0) (2024-03-23)
6
3
 
4
+ ### ๐Ÿฉน Fixes
7
5
 
8
- ### chore
6
+ - **utils:** ๐Ÿ› update the global config types
9
7
 
10
- * **utils:** ๐Ÿค– update scope to jsverse ([89662d0](https://github.com/jsverse/transloco/commit/89662d0d950d233bed5502fa7a182f42cdad2838))
8
+ ## [7.0.1](https://github.com/ngneat/transloco/compare/transloco-utils-7.0.0...transloco-utils-7.0.1) (2024-05-31)
11
9
 
10
+ # [7.0.0](https://github.com/jsverse/transloco/compare/transloco-utils-6.0.0...transloco-utils-7.0.0) (2024-03-23)
12
11
 
13
- ### BREAKING CHANGES
12
+ ### chore
14
13
 
15
- * **utils:** ๐Ÿงจ The package is noe published under the jsverse scope
14
+ - **utils:** ๐Ÿค– update scope to jsverse ([89662d0](https://github.com/jsverse/transloco/commit/89662d0d950d233bed5502fa7a182f42cdad2838))
16
15
 
16
+ ### BREAKING CHANGES
17
17
 
18
+ - **utils:** ๐Ÿงจ The package is noe published under the jsverse scope
18
19
 
19
20
  # [6.0.0](https://github.com/jsverse/transloco/compare/transloco-utils-5.0.0...transloco-utils-6.0.0) (2024-03-23)
20
21
 
21
-
22
-
23
22
  # [5.0.0](https://github.com/jsverse/transloco/compare/transloco-utils-4.0.0...transloco-utils-5.0.0) (2023-07-30)
24
23
 
25
24
  # [4.0.0](https://github.com/jsverse/transloco/compare/transloco-utils-3.0.5...transloco-utils-4.0.0) (2023-06-17)
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@jsverse/transloco-utils",
3
- "version": "7.0.0",
3
+ "version": "7.0.2",
4
4
  "description": "Transloco utils library",
5
- "main": "./src/index.js",
5
+ "main": "src/index.js",
6
6
  "engines": {
7
7
  "node": ">=16"
8
8
  },
@@ -35,4 +35,4 @@
35
35
  "tslib": "^2.3.0"
36
36
  },
37
37
  "type": "commonjs"
38
- }
38
+ }
@@ -10,9 +10,12 @@ export interface TranslocoGlobalConfig {
10
10
  keysManager?: {
11
11
  input?: string | string[];
12
12
  output?: string;
13
+ fileFormat?: 'json' | 'pot';
13
14
  marker?: string;
14
15
  addMissingKeys?: boolean;
16
+ emitErrorOnExtraKeys?: boolean;
15
17
  replace?: boolean;
16
- defaultValue?: string;
18
+ defaultValue?: string | undefined;
19
+ unflat?: boolean;
17
20
  };
18
21
  }