From f13a1d4c63a7c034200a2f3c5269a89de130a754 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Mon, 4 Dec 2023 16:30:00 +0900 Subject: [PATCH] feat: build --- dist/lib/logged.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/lib/logged.js b/dist/lib/logged.js index aab2f18..0cb1be3 100644 --- a/dist/lib/logged.js +++ b/dist/lib/logged.js @@ -36,10 +36,12 @@ function LoggedInjectable(options) { methods.forEach((method) => { if (method !== "constructor" && typeof target.prototype[method] === "function") { + const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]); logger.log(`LoggedFunction applied to ${method}`); LoggedFunction(target.prototype, method, { value: target.prototype[method], }); + all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method])); } }); (0, common_1.Injectable)(options)(target); @@ -56,12 +58,12 @@ function LoggedController(param) { typeof target.prototype[method] === "function") { const path = Reflect.getMetadata("path", target.prototype[method]); const httpMethod = Reflect.getMetadata("method", target.prototype[method]); + const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]); logger.log(`LoggedRoute applied to ${method} (${RevRequestMethod[httpMethod]} ${path})`); LoggedRoute()(target.prototype, method, { value: target.prototype[method], }); - Reflect.defineMetadata("path", path, target.prototype[method]); - Reflect.defineMetadata("method", httpMethod, target.prototype[method]); + all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method])); } }); (0, common_1.Controller)(param)(target);