From af7e4aba807f5f0ad10aa52935c4f9a251025d3d Mon Sep 17 00:00:00 2001 From: jlenon7 Date: Fri, 17 May 2024 13:42:18 +0100 Subject: [PATCH] chore(npm): update dependencies --- package-lock.json | 4 ++-- package.json | 2 +- src/helpers/Path.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7c7346c..f89669f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@athenna/common", - "version": "4.41.0", + "version": "4.42.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@athenna/common", - "version": "4.41.0", + "version": "4.42.0", "license": "MIT", "dependencies": { "@fastify/formbody": "^7.4.0", diff --git a/package.json b/package.json index afdb05a..5f940f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/common", - "version": "4.41.0", + "version": "4.42.0", "description": "The Athenna common helpers to use in any Node.js ESM project.", "license": "MIT", "author": "João Lenon ", diff --git a/src/helpers/Path.ts b/src/helpers/Path.ts index da55c76..2017923 100644 --- a/src/helpers/Path.ts +++ b/src/helpers/Path.ts @@ -519,7 +519,7 @@ export class Path { * Return the guards path of your project. */ public static guards(subPath: string = sep): string { - return this.pwd(this.dirs.http + sep + normalize(subPath)) + return this.pwd(this.dirs.guards + sep + normalize(subPath)) } /**