Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/config",
"version": "5.2.0",
"version": "5.3.0",
"description": "Cache and handle environment variables and config files of Athenna.",
"license": "MIT",
"author": "João Lenon <lenon@athenna.io>",
Expand Down Expand Up @@ -163,6 +163,7 @@
"no-useless-constructor": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
Expand Down
3 changes: 1 addition & 2 deletions src/config/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
File,
Json,
Path,
Exec,
Module,
Macroable,
ObjectBuilder
Expand Down Expand Up @@ -211,7 +210,7 @@ export class Config extends Macroable {

this.fatherConfigPath = path

await Exec.concurrently(files, file =>
await files.athenna.concurrently(file =>
safe ? this.safeLoad(file.path) : this.load(file.path)
)
}
Expand Down
Loading