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
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/config",
"version": "5.4.0",
"version": "5.5.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 @@ -58,7 +58,7 @@
"syntax-error": "^1.4.0"
},
"devDependencies": {
"@athenna/common": "^5.14.0",
"@athenna/common": "^5.26.0",
"@athenna/test": "^5.5.0",
"@athenna/tsconfig": "^5.0.0",
"@types/lodash": "^4.17.20",
Expand Down
2 changes: 1 addition & 1 deletion src/config/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ export class Config extends Macroable {
return
}

if (base.includes('.ts') && Env('IS_TS') === false) {
if (base.includes('.ts') && (Env('IS_TS') === false || !Is.Deno())) {
debug(
'Configuration file %s being skipped since its a TypeScript file and the application is not running in a TypeScript environment.',
base
Expand Down
Loading