Skip to content

Commit

Permalink
Merge pull request #14 from AthennaIO/develop
Browse files Browse the repository at this point in the history
feat: update ioc, http and logger
  • Loading branch information
jlenon7 authored Apr 4, 2022
2 parents 9bb3732 + c177dad commit 9eaef67
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
54 changes: 27 additions & 27 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/core",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down Expand Up @@ -163,9 +163,9 @@
},
"dependencies": {
"@athenna/config": "1.0.5",
"@athenna/ioc": "1.0.8",
"@athenna/logger": "1.0.6",
"@athenna/http": "1.1.0",
"@athenna/ioc": "1.0.9",
"@athenna/logger": "1.0.7",
"@athenna/http": "1.1.1",
"@secjs/utils": "1.8.0",
"reflect-metadata": "0.1.13",
"tscpaths": "0.0.9"
Expand Down
4 changes: 2 additions & 2 deletions src/Factories/AthennaFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ export class AthennaFactory {
private static extension: '.js' | '.ts'

constructor(fileName: string) {
console.clear()

AthennaFactory.resolveNodeTs(fileName)

process.env.NODE_ENV = getAppEnvironment(
Expand All @@ -46,6 +44,8 @@ export class AthennaFactory {
log: () => {},
error: () => {},
}
} else {
console.clear()
}

const providers = AthennaFactory.getProviders()
Expand Down

0 comments on commit 9eaef67

Please sign in to comment.