Skip to content

Commit

Permalink
Merge pull request #182 from AthennaIO/develop
Browse files Browse the repository at this point in the history
feat(app): import packages as types
  • Loading branch information
jlenon7 authored Aug 10, 2023
2 parents d340008 + 32ee83b commit 34d75bd
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/core",
"version": "4.2.0",
"version": "4.3.0",
"description": "The plug and play Node.js framework.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/applications/Artisan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*/

import { Log } from '@athenna/logger'
import { ArtisanImpl } from '@athenna/artisan'
import { Module, Options } from '@athenna/common'
import type { ArtisanImpl } from '@athenna/artisan'
import type { ArtisanOptions } from '#src/types/ArtisanOptions'

export class Artisan {
Expand Down
2 changes: 1 addition & 1 deletion src/applications/Http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { Log } from '@athenna/logger'
import { ServerImpl } from '@athenna/http'
import type { ServerImpl } from '@athenna/http'
import { Is, Module, Options } from '@athenna/common'
import type { HttpOptions } from '#src/types/HttpOptions'

Expand Down
2 changes: 1 addition & 1 deletion src/ignite/Ignite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import type {
import { Ioc } from '@athenna/ioc'
import { Http } from '#src/applications/Http'
import { Repl } from '#src/applications/Repl'
import type { PrettyREPLServer } from 'pretty-repl'
import { EnvHelper, Rc } from '@athenna/config'
import { isAbsolute, resolve } from 'node:path'
import { Artisan } from '#src/applications/Artisan'
import type { PrettyREPLServer } from 'pretty-repl'
import { LoadHelper } from '#src/helpers/LoadHelper'
import { Log, LoggerProvider } from '@athenna/logger'
import { File, Is, Module, Options } from '@athenna/common'
Expand Down

0 comments on commit 34d75bd

Please sign in to comment.