Skip to content

Commit

Permalink
Merge pull request #135 from AthennaIO/develop
Browse files Browse the repository at this point in the history
chore(npm): update dependencies
  • Loading branch information
jlenon7 authored Aug 26, 2024
2 parents 0f19fb7 + e55994b commit 958339a
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 130 deletions.
26 changes: 13 additions & 13 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@athenna/common",
"version": "4.46.0",
"version": "5.0.0",
"description": "The Athenna common helpers to use in any Node.js ESM project.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
Expand Down Expand Up @@ -82,8 +82,8 @@
"youch-terminal": "^2.2.3"
},
"devDependencies": {
"@athenna/test": "^4.29.0",
"@athenna/tsconfig": "^4.19.0",
"@athenna/test": "^4.30.0",
"@athenna/tsconfig": "^5.0.0",
"@types/bytes": "^3.1.4",
"@types/callsite": "^1.0.34",
"@types/debug": "^4.1.12",
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/Color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ export class Color {
*
* @example
* ```ts
* const message = Color.apply('The file ({yellow, bold} "app/services/Service") has been created.')
* const message = Color.apply('The file ({yellow, bold} "src/services/Service") has been created.')
*
* console.log(message)
* ```
* Output:
* ```bash
* The file "app/services/Service" has been created.
* The file "src/services/Service" has been created.
* ```
*/
public static apply(...args: string[]): string {
Expand Down
60 changes: 30 additions & 30 deletions src/helpers/Path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,42 +19,42 @@ export class Path {
bin: 'bin',
src: 'src',
app: 'app',
models: 'app/models',
services: 'app/services',
jobs: 'app/jobs',
workers: 'app/workers',
exceptions: 'app/exceptions',
repositories: 'app/repositories',
console: 'app/console',
commands: 'app/console/commands',
http: 'app/http',
guards: 'app/http/guards',
controllers: 'app/http/controllers',
middlewares: 'app/http/middlewares',
interceptors: 'app/http/interceptors',
terminators: 'app/http/terminators',
validators: 'app/validators',
cron: 'app/cron',
schedulers: 'app/cron/schedulers',
models: 'src/models',
services: 'src/services',
jobs: 'src/jobs',
workers: 'src/workers',
exceptions: 'src/exceptions',
repositories: 'src/repositories',
console: 'src/console',
commands: 'src/console/commands',
http: 'src/http',
guards: 'src/http/guards',
controllers: 'src/http/controllers',
middlewares: 'src/http/middlewares',
interceptors: 'src/http/interceptors',
terminators: 'src/http/terminators',
validators: 'src/validators',
cron: 'src/cron',
schedulers: 'src/cron/schedulers',
bootstrap: 'bootstrap',
config: 'config',
database: 'database',
seeders: 'database/seeders',
migrations: 'database/migrations',
lang: 'lang',
resources: 'resources',
views: 'resources/views',
locales: 'resources/locales',
config: 'src/config',
database: 'src/database',
seeders: 'src/database/seeders',
migrations: 'src/database/migrations',
lang: 'src/lang',
resources: 'src/resources',
views: 'src/resources/views',
locales: 'src/resources/locales',
nodeModules: 'node_modules',
nodeModulesBin: 'node_modules/.bin',
providers: 'providers',
facades: 'providers/facades',
providers: 'src/providers',
facades: 'src/facades',
public: 'public',
static: 'public/static',
assets: 'public/assets',
routes: 'routes',
storage: 'storage',
logs: 'storage/logs',
routes: 'src/routes',
storage: 'src/storage',
logs: 'src/storage/logs',
tests: 'tests',
stubs: 'tests/stubs',
fixtures: 'tests/fixtures'
Expand Down
Loading

0 comments on commit 958339a

Please sign in to comment.