Skip to content

Commit 6ee3a63

Browse files
authored
Merge pull request #110 from AthennaIO/develop
chore(npm): update dependencies
2 parents e7dc6aa + f97ca73 commit 6ee3a63

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@athenna/config",
3-
"version": "5.2.0",
3+
"version": "5.3.0",
44
"description": "Cache and handle environment variables and config files of Athenna.",
55
"license": "MIT",
66
"author": "João Lenon <lenon@athenna.io>",
@@ -163,6 +163,7 @@
163163
"no-useless-constructor": "off",
164164
"@typescript-eslint/no-explicit-any": "off",
165165
"@typescript-eslint/no-empty-function": "off",
166+
"@typescript-eslint/no-unused-expressions": "off",
166167
"@typescript-eslint/no-unused-vars": [
167168
"error",
168169
{

src/config/Config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import {
1212
File,
1313
Json,
1414
Path,
15-
Exec,
1615
Module,
1716
Macroable,
1817
ObjectBuilder
@@ -211,7 +210,7 @@ export class Config extends Macroable {
211210

212211
this.fatherConfigPath = path
213212

214-
await Exec.concurrently(files, file =>
213+
await files.athenna.concurrently(file =>
215214
safe ? this.safeLoad(file.path) : this.load(file.path)
216215
)
217216
}

0 commit comments

Comments
 (0)