Skip to content

Commit

Permalink
chore(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Mar 3, 2024
1 parent 12a7d59 commit 2be674d
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 45 deletions.
58 changes: 29 additions & 29 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@
"#tests": "./tests/index.js"
},
"devDependencies": {
"@athenna/artisan": "^4.37.0",
"@athenna/common": "^4.34.0",
"@athenna/config": "^4.16.0",
"@athenna/ioc": "^4.16.0",
"@athenna/logger": "^4.17.0",
"@athenna/artisan": "^4.38.0",
"@athenna/common": "^4.35.0",
"@athenna/config": "^4.18.0",
"@athenna/ioc": "^4.18.0",
"@athenna/logger": "^4.18.0",
"@athenna/test": "^4.22.0",
"@athenna/tsconfig": "^4.12.0",
"@athenna/view": "^4.18.0",
"@athenna/view": "^4.20.0",
"@fastify/cors": "^8.4.2",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^8.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/RouteListCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import { sep } from 'node:path'
import { Config } from '@athenna/config'
import { Module } from '@athenna/common'
import { BaseCommand } from '@athenna/artisan'
import { Path, Module } from '@athenna/common'
import { Route, HttpKernel, HttpRouteProvider, HttpServerProvider } from '#src'

export class RouteListCommand extends BaseCommand {
Expand Down
2 changes: 1 addition & 1 deletion src/kernels/HttpKernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { Log } from '@athenna/logger'
import { Config } from '@athenna/config'
import { sep, isAbsolute, resolve } from 'node:path'
import { Annotation, type ServiceMeta } from '@athenna/ioc'
import { File, Exec, Module, String } from '@athenna/common'
import { File, Path, Exec, Module, String } from '@athenna/common'
import { HttpExceptionHandler } from '#src/handlers/HttpExceptionHandler'

const corsPlugin = await Module.safeImport('@fastify/cors')
Expand Down
2 changes: 2 additions & 0 deletions tests/fixtures/config/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* file that was distributed with this source code.
*/

import { Path } from '@athenna/common'

export default {
logger: {
enabled: true
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/consoles/base-console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*/

import { sep } from 'node:path'
import { Path } from '@athenna/common'
import { Config, Rc } from '@athenna/config'
import { ViewProvider } from '@athenna/view'
import { LoggerProvider } from '@athenna/logger'
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/consoles/console-mock-dest-import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*/

import { sep } from 'node:path'
import { Path } from '@athenna/common'
import { Config, Rc } from '@athenna/config'
import { ViewProvider } from '@athenna/view'
import { LoggerProvider } from '@athenna/logger'
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers/BaseCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* file that was distributed with this source code.
*/

import { File, Folder } from '@athenna/common'
import { AfterEach, BeforeEach } from '@athenna/test'
import { ArtisanProvider } from '@athenna/artisan'
import { Path, File, Folder } from '@athenna/common'
import { AfterEach, BeforeEach } from '@athenna/test'
import { TestCommand } from '@athenna/artisan/testing/plugins'

export class BaseCommandTest {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/MakeControllerCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { File } from '@athenna/common'
import { Path, File } from '@athenna/common'
import { Test, type Context } from '@athenna/test'
import { BaseCommandTest } from '#tests/helpers/BaseCommandTest'

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/MakeInterceptorCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { File } from '@athenna/common'
import { Path, File } from '@athenna/common'
import { Test, type Context } from '@athenna/test'
import { BaseCommandTest } from '#tests/helpers/BaseCommandTest'

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/MakeMiddlewareCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { File } from '@athenna/common'
import { Path, File } from '@athenna/common'
import { Test, type Context } from '@athenna/test'
import { BaseCommandTest } from '#tests/helpers/BaseCommandTest'

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/MakeTerminatorCommandTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { File } from '@athenna/common'
import { Path, File } from '@athenna/common'
import { Test, type Context } from '@athenna/test'
import { BaseCommandTest } from '#tests/helpers/BaseCommandTest'

Expand Down
1 change: 1 addition & 0 deletions tests/unit/context/ResponseTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import fastifyStatic from '@fastify/static'

import { fastify } from 'fastify'
import { Path } from '@athenna/common'
import { Response } from '#src/context/Response'
import { Test, type Context } from '@athenna/test'
import { View, ViewProvider } from '@athenna/view'
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/handlers/HttpExceptionHandlerTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { Exception } from '@athenna/common'
import { Path, Exception } from '@athenna/common'
import { Log, LoggerProvider } from '@athenna/logger'
import { HttpKernel, HttpServerProvider, Server } from '#src'
import { Test, AfterEach, BeforeEach, type Context, Mock } from '@athenna/test'
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/kernels/HttpKernelTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { Config } from '@athenna/config'
import { Module } from '@athenna/common'
import { Path, Module } from '@athenna/common'
import { Log, LoggerProvider } from '@athenna/logger'
import { HttpKernel, HttpServerProvider, HttpRouteProvider, Server, Route } from '#src'
import { Test, Mock, AfterEach, BeforeEach, type Context, Cleanup } from '@athenna/test'
Expand Down

0 comments on commit 2be674d

Please sign in to comment.