@feasibleone/blong-gogo 1.12.2 → 1.13.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.13.1](https://github.com/feasibleone/blong/compare/blong-gogo-v1.13.0...blong-gogo-v1.13.1) (2026-03-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * build ([8d5e84b](https://github.com/feasibleone/blong/commit/8d5e84bbf3095c3600b00e6bc5d9988abd2f538f))
9
+
10
+ ## [1.13.0](https://github.com/feasibleone/blong/compare/blong-gogo-v1.12.2...blong-gogo-v1.13.0) (2026-03-16)
11
+
12
+
13
+ ### Features
14
+
15
+ * add blong-config package with configuration loading and parsing functionality ([cc31b0a](https://github.com/feasibleone/blong/commit/cc31b0a062fe3261204ba9433901765415aad4f8))
16
+
3
17
  ## [1.12.2](https://github.com/feasibleone/blong/compare/blong-gogo-v1.12.1...blong-gogo-v1.12.2) (2026-03-15)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feasibleone/blong-gogo",
3
- "version": "1.12.2",
3
+ "version": "1.13.1",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/feasibleone/blong.git"
6
6
  },
@@ -24,6 +24,7 @@
24
24
  "@fastify/swagger-ui": "^5.2.5",
25
25
  "@feasibleone/blong": "^1.0.0",
26
26
  "@feasibleone/blong-chain": "^1.0.0",
27
+ "@feasibleone/blong-config": "^1.0.0",
27
28
  "@feasibleone/blong-kopi": "^1.0.0",
28
29
  "@keycloak/keycloak-admin-client": "^26.5.4",
29
30
  "@kubernetes/client-node": "^1.4.0",
package/src/load.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import load from '@feasibleone/blong-config';
1
2
  import {
2
3
  Internal,
3
4
  kind,
@@ -16,7 +17,6 @@ import {readdir} from 'fs/promises';
16
17
  import {createRequire} from 'node:module';
17
18
  import {basename, dirname, join} from 'path';
18
19
  import {Type, type TSchema} from 'typebox';
19
- import {load} from 'ut-config';
20
20
  import merge from 'ut-function.merge';
21
21
 
22
22
  import type {Dirent} from 'fs';
@@ -100,9 +100,8 @@ function activeConfigs<T extends TSchema>(
100
100
  async function loadConfig(config: string | object): Promise<object> {
101
101
  return typeof config === 'string'
102
102
  ? load({
103
- resolve: import.meta.resolve,
104
103
  config: {
105
- implementation: config,
104
+ suite: config,
106
105
  },
107
106
  })
108
107
  : config;