Skip to content

Commit

Permalink
Merge pull request #87 from AthennaIO/develop
Browse files Browse the repository at this point in the history
chore(npm): update dependencies
  • Loading branch information
jlenon7 authored Mar 3, 2024
2 parents ba90e64 + d292aa9 commit e3bbe52
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/ioc",
"version": "4.17.0",
"version": "4.18.0",
"description": "Global Ioc helper for Athenna ecosystem. Built on top of awilix.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/container/Ioc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { sep } from 'node:path'
import { debug } from '#src/debug'
import type { LoadModuleOptions } from '#src'
import { Annotation } from '#src/helpers/Annotation'
import { Is, Exec, String, Module, Options } from '@athenna/common'
import { Is, Path, Exec, String, Module, Options } from '@athenna/common'
import { NotFoundServiceException } from '#src/exceptions/NotFoundServiceException'

export class Ioc {
Expand Down
2 changes: 1 addition & 1 deletion src/types/LoadModuleOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type LoadModuleOptions = {
* method. This option is useful to determined which
* node_modules should be used to import the path.
*
* @default 'Path.toHref(Path.pwd() + sep)'
* @default Path.toHref(Path.pwd() + sep)
*/
parentURL?: string

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/container/IocTest.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 { Exec, Module } from '@athenna/common'
import { BaseTest } from '#tests/helpers/BaseTest'
import { Test, type Context } from '@athenna/test'
import { Path, Exec, Module } from '@athenna/common'
import { UserService } from '#tests/fixtures/UserService'
import { ClientService } from '#tests/fixtures/ClientService'
import { ClientServiceMock } from '#tests/fixtures/ClientServiceMock'
Expand Down

0 comments on commit e3bbe52

Please sign in to comment.