@biorate/config 1.38.2 → 1.38.4

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.38.4](https://github.com/biorate/core/compare/v1.38.3...v1.38.4) (2023-08-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **config:** types fix ([0c0f606](https://github.com/biorate/core/commit/0c0f60680c8068ee22616c547493ee698fe7a05c))
11
+
12
+ ## [1.38.3](https://github.com/biorate/core/compare/v1.38.2...v1.38.3) (2023-08-10)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **config:** types ([60004a7](https://github.com/biorate/core/commit/60004a726301aad2a2c7a62157a9b702ada88993))
17
+
6
18
  ## [1.38.2](https://github.com/biorate/core/compare/v1.38.1...v1.38.2) (2023-08-10)
7
19
 
8
20
  ### Bug Fixes
package/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { PropertyPath } from 'lodash';
2
2
  import { BaseError } from '@biorate/errors';
3
- import * as traverse from 'traverse';
3
+ import { IConfig as IConfigType } from './interfaces';
4
4
 
5
5
  declare module '@biorate/config' {
6
- export * from './interfaces';
6
+ export type IConfig = IConfigType;
7
7
 
8
8
  export class Config {
9
9
  protected data: Record<string | symbol, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biorate/config",
3
- "version": "1.38.2",
3
+ "version": "1.38.4",
4
4
  "description": "Application configurator",
5
5
  "main": "dist",
6
6
  "scripts": {
@@ -26,7 +26,7 @@
26
26
  "lodash": "^4.17.21",
27
27
  "traverse": "^0.6.6"
28
28
  },
29
- "gitHead": "05ec5c5127b097c107ddbfb6bb8a4354bed397fb",
29
+ "gitHead": "8d5441e69672a60d7946f4c3fcab109eff273a4d",
30
30
  "devDependencies": {
31
31
  "@types/traverse": "^0.6.32"
32
32
  }