Skip to content

Commit

Permalink
chore(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Jan 22, 2025
1 parent 0e73ef6 commit f97ca73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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 <[email protected]>",
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

0 comments on commit f97ca73

Please sign in to comment.