@athenna/config
Advanced tools
Comparing version 5.2.0 to 5.3.0
{ | ||
"name": "@athenna/config", | ||
"version": "5.2.0", | ||
"version": "5.3.0", | ||
"description": "Cache and handle environment variables and config files of Athenna.", | ||
@@ -166,2 +166,3 @@ "license": "MIT", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-unused-expressions": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
@@ -168,0 +169,0 @@ "error", |
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
import { Is, File, Json, Path, Exec, Module, Macroable, ObjectBuilder } from '@athenna/common'; | ||
import { Is, File, Json, Path, Module, Macroable, ObjectBuilder } from '@athenna/common'; | ||
import { debug } from '#src/debug'; | ||
@@ -169,3 +169,3 @@ import { loadFile, writeFile } from 'magicast'; | ||
this.fatherConfigPath = path; | ||
await Exec.concurrently(files, file => safe ? this.safeLoad(file.path) : this.load(file.path)); | ||
await files.athenna.concurrently(file => safe ? this.safeLoad(file.path) : this.load(file.path)); | ||
} | ||
@@ -172,0 +172,0 @@ /** |
42118