Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zoe-codez committed Oct 28, 2024
1 parent d4e94db commit 829f032
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": {
"url": "git+https://github.com/Digital-Alchemy-TS/core"
},
"version": "24.10.7",
"version": "24.10.8",
"author": {
"url": "https://github.com/zoe-codez",
"name": "Zoe Codez"
Expand Down
3 changes: 2 additions & 1 deletion src/services/configuration.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
CodeConfigDefinition,
ConfigLoader,
ConfigLoaderEnvironment,
configLoaderFile,
DataTypes,
deepExtend,
DigitalAlchemyConfiguration,
Expand Down Expand Up @@ -41,7 +42,7 @@ export function Configuration({
const configDefinitions: KnownConfigs = new Map();
const configuration: PartialConfiguration = {};
const loaded = new Set<string>();
const loaders = new Map<DataTypes, ConfigLoader>();
const loaders = new Map<DataTypes, ConfigLoader>([["file", configLoaderFile]]);

// #MARK:
const proxyData = {} as Record<string, object>;
Expand Down

0 comments on commit 829f032

Please sign in to comment.