generated from AthennaIO/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from AthennaIO/develop
feat: add container folder and controller/middleware providers
- Loading branch information
Showing
14 changed files
with
182 additions
and
257 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@athenna/core", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
"license": "MIT", | ||
"author": "João Lenon <[email protected]>", | ||
|
@@ -128,6 +128,7 @@ | |
"no-useless-constructor": "off", | ||
"@typescript-eslint/no-useless-constructor": "off", | ||
"@typescript-eslint/camelcase": "off", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/explicit-module-boundary-types": "off", | ||
"@typescript-eslint/interface-name-prefix": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
|
@@ -145,6 +146,10 @@ | |
"src/*.d.ts", | ||
"src/**/*.js", | ||
"src/**/*.d.ts", | ||
"container/*.js", | ||
"container/*.d.ts", | ||
"container/**/*.js", | ||
"container/**/*.d.ts", | ||
"*.js", | ||
"*.d.ts" | ||
], | ||
|
@@ -155,9 +160,9 @@ | |
}, | ||
"dependencies": { | ||
"@athenna/config": "1.0.5", | ||
"@athenna/http": "1.0.4", | ||
"@athenna/ioc": "1.0.3", | ||
"@athenna/logger": "1.0.2", | ||
"@athenna/ioc": "1.0.6", | ||
"@athenna/logger": "1.0.4", | ||
"@athenna/http": "1.0.5", | ||
"@secjs/utils": "1.8.0", | ||
"reflect-metadata": "0.1.13", | ||
"tscpaths": "0.0.9" | ||
|
Oops, something went wrong.