Skip to content

Commit

Permalink
Merge pull request #68 from AthennaIO/develop
Browse files Browse the repository at this point in the history
chore(npm): update dependencies
  • Loading branch information
jlenon7 authored Jul 5, 2022
2 parents 1790874 + 52ed068 commit 3f6c12a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
18 changes: 9 additions & 9 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/core",
"version": "1.6.5",
"version": "1.6.6",
"description": "The plug and play Node.js framework.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"@athenna/artisan": "1.2.7",
"@athenna/config": "1.1.1",
"@athenna/http": "1.4.1",
"@athenna/http": "1.4.5",
"@athenna/ioc": "1.2.0",
"@athenna/logger": "1.2.5",
"@secjs/utils": "1.9.4"
Expand Down
3 changes: 2 additions & 1 deletion tests/Stubs/app/Console/Kernel.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* file that was distributed with this source code.
*/

import { HttpCommandsLoader } from '@athenna/http'
import { ArtisanLoader, ConsoleKernel } from '@athenna/artisan'

export class Kernel extends ConsoleKernel {
Expand All @@ -15,5 +16,5 @@ export class Kernel extends ConsoleKernel {
*
* @return void
*/
commands = [...ArtisanLoader.loadCommands()]
commands = [...ArtisanLoader.loadCommands(), ...HttpCommandsLoader.loadCommands()]
}
2 changes: 1 addition & 1 deletion tests/Unit/IgniteTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ test.group('IgniteTest', group => {
assert.equal(Config.get('app.name'), 'Athenna')
assert.equal(Config.get('http.domain'), 'http://localhost:1335')

await artisan.call('make:command TestCommand')
await artisan.call('make:controller TestController')
})
})

0 comments on commit 3f6c12a

Please sign in to comment.