@biorate/config 1.38.2 → 1.38.3

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.3](https://github.com/biorate/core/compare/v1.38.2...v1.38.3) (2023-08-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **config:** types ([60004a7](https://github.com/biorate/core/commit/60004a726301aad2a2c7a62157a9b702ada88993))
11
+
6
12
  ## [1.38.2](https://github.com/biorate/core/compare/v1.38.1...v1.38.2) (2023-08-10)
7
13
 
8
14
  ### 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 } from './interfaces';
4
4
 
5
5
  declare module '@biorate/config' {
6
- export * from './interfaces';
6
+ export type IConfig = IConfig;
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.3",
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": "d472d4b09c666ce4d9e79919375841b8ef098842",
30
30
  "devDependencies": {
31
31
  "@types/traverse": "^0.6.32"
32
32
  }