build
This commit is contained in:
parent
c792dbdcd6
commit
58da4b054f
16
dist/README.md
vendored
16
dist/README.md
vendored
@ -3,24 +3,8 @@
|
|||||||
This package provides some decorations to make NestJS logging simpler.
|
This package provides some decorations to make NestJS logging simpler.
|
||||||
It only uses Logger provided by @nestjs/common package and some dependencies required for nestjs.
|
It only uses Logger provided by @nestjs/common package and some dependencies required for nestjs.
|
||||||
|
|
||||||
> TODO: Improve README, providing Quickstart section, add wiki to github
|
|
||||||
|
|
||||||
## How to use
|
## How to use
|
||||||
|
|
||||||
### Installation
|
|
||||||
|
|
||||||
npm:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm i nestlogged
|
|
||||||
```
|
|
||||||
|
|
||||||
yarn:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
yarn add nestlogged
|
|
||||||
```
|
|
||||||
|
|
||||||
### Route Logging
|
### Route Logging
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
|
8
dist/lib/logged.d.ts
vendored
8
dist/lib/logged.d.ts
vendored
@ -1,8 +1,12 @@
|
|||||||
import { ControllerOptions, ScopeOptions } from "@nestjs/common";
|
import { ControllerOptions, ScopeOptions } from "@nestjs/common";
|
||||||
import { RequestMethod } from "@nestjs/common";
|
import { RequestMethod } from "@nestjs/common";
|
||||||
export declare function LoggedInjectable(options?: ScopeOptions): (target: any) => void;
|
export declare function LoggedInjectable(options?: ScopeOptions & {
|
||||||
|
verbose?: boolean;
|
||||||
|
}): (target: any) => void;
|
||||||
export declare function LoggedController(): (target: any) => void;
|
export declare function LoggedController(): (target: any) => void;
|
||||||
export declare function LoggedController(prefix: string | string[]): (target: any) => void;
|
export declare function LoggedController(prefix: string | string[]): (target: any) => void;
|
||||||
export declare function LoggedController(options: ControllerOptions): (target: any) => void;
|
export declare function LoggedController(options: ControllerOptions & {
|
||||||
|
verbose?: boolean;
|
||||||
|
}): (target: any) => void;
|
||||||
export declare function LoggedFunction<F extends Array<any>, R>(_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>): void;
|
export declare function LoggedFunction<F extends Array<any>, R>(_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>): void;
|
||||||
export declare function LoggedRoute<F extends Array<any>, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>) => [string, RequestMethod];
|
export declare function LoggedRoute<F extends Array<any>, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>) => [string, RequestMethod];
|
||||||
|
176
dist/lib/logged.js
vendored
176
dist/lib/logged.js
vendored
@ -4,6 +4,7 @@ exports.LoggedRoute = exports.LoggedFunction = exports.LoggedController = export
|
|||||||
const common_1 = require("@nestjs/common");
|
const common_1 = require("@nestjs/common");
|
||||||
const logger_1 = require("./logger");
|
const logger_1 = require("./logger");
|
||||||
const reflected_1 = require("./reflected");
|
const reflected_1 = require("./reflected");
|
||||||
|
const reflected_2 = require("./reflected");
|
||||||
const functions_1 = require("./functions");
|
const functions_1 = require("./functions");
|
||||||
const RevRequestMethod = [
|
const RevRequestMethod = [
|
||||||
"GET",
|
"GET",
|
||||||
@ -37,7 +38,8 @@ function LoggedInjectable(options) {
|
|||||||
if (method !== "constructor" &&
|
if (method !== "constructor" &&
|
||||||
typeof target.prototype[method] === "function") {
|
typeof target.prototype[method] === "function") {
|
||||||
const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]);
|
const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]);
|
||||||
logger.log(`LoggedFunction applied to ${method}`);
|
if (options && options.verbose)
|
||||||
|
logger.log(`LoggedFunction applied to ${method}`);
|
||||||
LoggedFunction(target.prototype, method, {
|
LoggedFunction(target.prototype, method, {
|
||||||
value: target.prototype[method],
|
value: target.prototype[method],
|
||||||
});
|
});
|
||||||
@ -53,13 +55,17 @@ function LoggedController(param) {
|
|||||||
loggerInit(target.prototype);
|
loggerInit(target.prototype);
|
||||||
const logger = target.prototype.logger;
|
const logger = target.prototype.logger;
|
||||||
const methods = Object.getOwnPropertyNames(target.prototype);
|
const methods = Object.getOwnPropertyNames(target.prototype);
|
||||||
|
let verbose = typeof param === "object" && Object.keys(param).includes("verbose")
|
||||||
|
? param.verbose
|
||||||
|
: false;
|
||||||
methods.forEach((method) => {
|
methods.forEach((method) => {
|
||||||
if (method !== "constructor" &&
|
if (method !== "constructor" &&
|
||||||
typeof target.prototype[method] === "function") {
|
typeof target.prototype[method] === "function") {
|
||||||
const path = Reflect.getMetadata("path", target.prototype[method]);
|
const path = Reflect.getMetadata("path", target.prototype[method]);
|
||||||
const httpMethod = Reflect.getMetadata("method", 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])]);
|
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})`);
|
if (verbose)
|
||||||
|
logger.log(`LoggedRoute applied to ${method} (${RevRequestMethod[httpMethod]} ${path})`);
|
||||||
LoggedRoute()(target.prototype, method, {
|
LoggedRoute()(target.prototype, method, {
|
||||||
value: target.prototype[method],
|
value: target.prototype[method],
|
||||||
});
|
});
|
||||||
@ -70,6 +76,78 @@ function LoggedController(param) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
exports.LoggedController = LoggedController;
|
exports.LoggedController = LoggedController;
|
||||||
|
function overrideBuild(originalFunction, baseLogger, metadatas, key, route) {
|
||||||
|
return async function (...args) {
|
||||||
|
let injectedLogger = baseLogger;
|
||||||
|
if (typeof metadatas.scopedLoggerInjectableParam !== "undefined") {
|
||||||
|
if (args.length <= metadatas.scopedLoggerInjectableParam ||
|
||||||
|
!(args[metadatas.scopedLoggerInjectableParam] instanceof logger_1.ScopedLogger)) {
|
||||||
|
args[metadatas.scopedLoggerInjectableParam] = new logger_1.ScopedLogger(baseLogger, key);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
args[metadatas.scopedLoggerInjectableParam] = new logger_1.ScopedLogger(args[metadatas.scopedLoggerInjectableParam], key);
|
||||||
|
}
|
||||||
|
injectedLogger = args[metadatas.scopedLoggerInjectableParam];
|
||||||
|
if (Array.isArray(metadatas.scopeKeys)) {
|
||||||
|
const scopeKeyResults = metadatas.scopeKeys.map((key) => {
|
||||||
|
const argsValue = args[key.index];
|
||||||
|
if (!key.path) {
|
||||||
|
if (!metadatas.shouldScoped || argsValue) {
|
||||||
|
return { error: false, value: `${key.name}=${argsValue}` };
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return {
|
||||||
|
error: true,
|
||||||
|
value: `ScopeKey in ShouldScope cannot be falsy value (${argsValue})`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const reduceResult = key.path.reduce((base, keyPath) => {
|
||||||
|
if (typeof base !== "object" ||
|
||||||
|
!Object.keys(base).includes(keyPath))
|
||||||
|
throw new Error(`Cannot find key ${keyPath} in ${typeof base === "object" ? JSON.stringify(base) : base}`);
|
||||||
|
return base[keyPath];
|
||||||
|
}, argsValue);
|
||||||
|
return { error: false, value: `${key.name}=${reduceResult}` };
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
return { error: true, value: e.message };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const successResults = scopeKeyResults.filter((v) => v.error === false);
|
||||||
|
if (successResults.length === 0) {
|
||||||
|
if (metadatas.shouldScoped) {
|
||||||
|
scopeKeyResults.forEach((v) => injectedLogger.warn(v.value));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
injectedLogger.addScope(successResults[0].value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
injectedLogger.log(`${route ? "HIT HTTP" : "CALL"} ${route ? `${route.fullRoute} (${key})` : key} ${metadatas.loggedParams && metadatas.loggedParams.length > 0
|
||||||
|
? "WITH " +
|
||||||
|
(await Promise.all(metadatas.loggedParams.map(async ({ name, index, include, exclude }) => name +
|
||||||
|
"=" +
|
||||||
|
(await (0, functions_1.default)(args[index], {
|
||||||
|
include,
|
||||||
|
exclude,
|
||||||
|
}))))).join(", ")
|
||||||
|
: ""}`);
|
||||||
|
try {
|
||||||
|
const r = await originalFunction.call(this, ...args);
|
||||||
|
injectedLogger.log(route
|
||||||
|
? `RETURNED RESPONSE ${route.fullRoute} (${key})`
|
||||||
|
: `RETURNED ${key}`);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
injectedLogger.error(`WHILE ${route ? `HTTP ${route.fullRoute} (${key})` : key} ERROR ${e}`);
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
function LoggedFunction(_target, key, descriptor) {
|
function LoggedFunction(_target, key, descriptor) {
|
||||||
loggerInit(_target);
|
loggerInit(_target);
|
||||||
const logger = _target.logger;
|
const logger = _target.logger;
|
||||||
@ -78,39 +156,18 @@ function LoggedFunction(_target, key, descriptor) {
|
|||||||
logger.warn(`LoggedFunction decorator applied to non-function property: ${key}`);
|
logger.warn(`LoggedFunction decorator applied to non-function property: ${key}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_target[key] = async function (...args) {
|
const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_2.scopedLogger, _target, key);
|
||||||
const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_1.scopedLogger, _target, key);
|
const loggedParams = Reflect.getOwnMetadata(reflected_2.loggedParam, _target, key);
|
||||||
if (typeof scopedLoggerInjectableParam !== "undefined" &&
|
const scopeKeys = Reflect.getOwnMetadata(reflected_1.scopeKey, _target, key);
|
||||||
(args.length <= scopedLoggerInjectableParam ||
|
const shouldScoped = Reflect.getOwnMetadata(reflected_1.forceScopeKey, fn);
|
||||||
!(args[scopedLoggerInjectableParam] instanceof logger_1.ScopedLogger))) {
|
const overrideFunction = overrideBuild(fn, logger, {
|
||||||
args[scopedLoggerInjectableParam] = new logger_1.ScopedLogger(logger, key);
|
scopedLoggerInjectableParam,
|
||||||
}
|
loggedParams,
|
||||||
else if (typeof scopedLoggerInjectableParam !== "undefined") {
|
scopeKeys,
|
||||||
args[scopedLoggerInjectableParam] = new logger_1.ScopedLogger(args[scopedLoggerInjectableParam], key);
|
shouldScoped,
|
||||||
}
|
}, key);
|
||||||
const injectedLogger = typeof scopedLoggerInjectableParam !== "undefined"
|
_target[key] = overrideFunction;
|
||||||
? args[scopedLoggerInjectableParam]
|
descriptor.value = overrideFunction;
|
||||||
: logger;
|
|
||||||
const loggedParams = Reflect.getOwnMetadata(reflected_1.loggedParam, _target, key);
|
|
||||||
injectedLogger.log(`CALL ${key} ${loggedParams && loggedParams.length > 0
|
|
||||||
? "WITH " +
|
|
||||||
(await Promise.all(loggedParams.map(async ({ name, index, include, exclude }) => name +
|
|
||||||
"=" +
|
|
||||||
(await (0, functions_1.default)(args[index], {
|
|
||||||
include,
|
|
||||||
exclude,
|
|
||||||
}))))).join(", ")
|
|
||||||
: ""}`);
|
|
||||||
try {
|
|
||||||
const r = await fn.call(this, ...args);
|
|
||||||
injectedLogger.log(`RETURNED ${key}`);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
injectedLogger.error(`WHILE ${key} ERROR ${e}`);
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
exports.LoggedFunction = LoggedFunction;
|
exports.LoggedFunction = LoggedFunction;
|
||||||
function LoggedRoute(route) {
|
function LoggedRoute(route) {
|
||||||
@ -118,44 +175,25 @@ function LoggedRoute(route) {
|
|||||||
loggerInit(_target);
|
loggerInit(_target);
|
||||||
const logger = _target.logger;
|
const logger = _target.logger;
|
||||||
const fn = descriptor.value;
|
const fn = descriptor.value;
|
||||||
const httpPath = Reflect.getMetadata("path", fn);
|
|
||||||
const httpMethod = Reflect.getMetadata("method", fn);
|
|
||||||
const fullRoute = `${_target.constructor.name}::${route ?? httpPath}[${RevRequestMethod[httpMethod]}]`;
|
|
||||||
if (!fn || typeof fn !== "function") {
|
if (!fn || typeof fn !== "function") {
|
||||||
logger.warn(`LoggedRoute decorator applied to non-function property: ${key}`);
|
logger.warn(`LoggedRoute decorator applied to non-function property: ${key}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_target[key] = async function (...args) {
|
const httpPath = Reflect.getMetadata("path", fn);
|
||||||
const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_1.scopedLogger, _target, key);
|
const httpMethod = Reflect.getMetadata("method", fn);
|
||||||
if (typeof scopedLoggerInjectableParam !== "undefined" &&
|
const fullRoute = `${_target.constructor.name}::${route ?? httpPath}[${RevRequestMethod[httpMethod]}]`;
|
||||||
(args.length <= scopedLoggerInjectableParam ||
|
const scopedLoggerInjectableParam = Reflect.getOwnMetadata(reflected_2.scopedLogger, _target, key);
|
||||||
!(args[scopedLoggerInjectableParam] instanceof logger_1.ScopedLogger))) {
|
const loggedParams = Reflect.getOwnMetadata(reflected_2.loggedParam, _target, key);
|
||||||
args[scopedLoggerInjectableParam] = new logger_1.ScopedLogger(logger, fullRoute);
|
const scopeKeys = Reflect.getOwnMetadata(reflected_1.scopeKey, _target, key);
|
||||||
}
|
const shouldScoped = Reflect.getOwnMetadata(reflected_1.forceScopeKey, fn);
|
||||||
const injectedLogger = typeof scopedLoggerInjectableParam !== "undefined"
|
const overrideFunction = overrideBuild(fn, logger, {
|
||||||
? args[scopedLoggerInjectableParam]
|
scopedLoggerInjectableParam,
|
||||||
: logger;
|
loggedParams,
|
||||||
const loggedParams = Reflect.getOwnMetadata(reflected_1.loggedParam, _target, key);
|
scopeKeys,
|
||||||
injectedLogger.log(`HIT HTTP ${fullRoute} (${key}) ${loggedParams && loggedParams.length > 0
|
shouldScoped,
|
||||||
? "WITH " +
|
}, key, {
|
||||||
(await Promise.all(loggedParams.map(async ({ name, index, include, exclude }) => name +
|
fullRoute,
|
||||||
"=" +
|
});
|
||||||
(await (0, functions_1.default)(args[index], {
|
|
||||||
include,
|
|
||||||
exclude,
|
|
||||||
}))))).join(", ")
|
|
||||||
: ""}`);
|
|
||||||
try {
|
|
||||||
const r = await fn.call(this, ...args);
|
|
||||||
injectedLogger.log(`RETURNED RESPONSE ${fullRoute} (${key})`);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
injectedLogger.error(`WHILE HTTP ${fullRoute} (${key}) ERROR ${e}`);
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return [httpPath, httpMethod];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
exports.LoggedRoute = LoggedRoute;
|
exports.LoggedRoute = LoggedRoute;
|
||||||
|
1
dist/lib/logger.d.ts
vendored
1
dist/lib/logger.d.ts
vendored
@ -4,6 +4,7 @@ export declare class ScopedLogger extends Logger {
|
|||||||
private scope;
|
private scope;
|
||||||
private scopeId?;
|
private scopeId?;
|
||||||
constructor(logger: Logger, scope: string, scopeId?: string);
|
constructor(logger: Logger, scope: string, scopeId?: string);
|
||||||
|
addScope(scopeId: string): void;
|
||||||
private scopedLog;
|
private scopedLog;
|
||||||
debug: (message: string) => void;
|
debug: (message: string) => void;
|
||||||
log: (message: string) => void;
|
log: (message: string) => void;
|
||||||
|
3
dist/lib/logger.js
vendored
3
dist/lib/logger.js
vendored
@ -15,6 +15,9 @@ class ScopedLogger extends common_1.Logger {
|
|||||||
this.error = this.scopedLog("error");
|
this.error = this.scopedLog("error");
|
||||||
this.fatal = this.scopedLog("fatal");
|
this.fatal = this.scopedLog("fatal");
|
||||||
}
|
}
|
||||||
|
addScope(scopeId) {
|
||||||
|
this.scopeId = scopeId;
|
||||||
|
}
|
||||||
scopedLog(method) {
|
scopedLog(method) {
|
||||||
return (message) => {
|
return (message) => {
|
||||||
this.logger[method](`-> ${this.scope}${this.scopeId ? `(${this.scopeId})` : ""}: ${message}`);
|
this.logger[method](`-> ${this.scope}${this.scopeId ? `(${this.scopeId})` : ""}: ${message}`);
|
||||||
|
13
dist/lib/reflected.d.ts
vendored
13
dist/lib/reflected.d.ts
vendored
@ -4,10 +4,23 @@ export interface LoggedParamReflectData {
|
|||||||
include?: string[];
|
include?: string[];
|
||||||
exclude?: string[];
|
exclude?: string[];
|
||||||
}
|
}
|
||||||
|
export interface ScopeKeyReflectData {
|
||||||
|
name: string;
|
||||||
|
index: number;
|
||||||
|
path?: string[];
|
||||||
|
priority?: number;
|
||||||
|
}
|
||||||
export declare const scopedLogger: unique symbol;
|
export declare const scopedLogger: unique symbol;
|
||||||
export declare const loggedParam: unique symbol;
|
export declare const loggedParam: unique symbol;
|
||||||
|
export declare const scopeKey: unique symbol;
|
||||||
|
export declare const forceScopeKey: unique symbol;
|
||||||
export declare function InjectLogger(target: any, propertyKey: string | symbol, parameterIndex: number): void;
|
export declare function InjectLogger(target: any, propertyKey: string | symbol, parameterIndex: number): void;
|
||||||
export declare function LoggedParam(name: string, options?: {
|
export declare function LoggedParam(name: string, options?: {
|
||||||
includePath?: (string | string[])[];
|
includePath?: (string | string[])[];
|
||||||
excludePath?: (string | string[])[];
|
excludePath?: (string | string[])[];
|
||||||
}): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|
}): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|
||||||
|
export declare function ScopeKey(name: string, options?: {
|
||||||
|
path?: string | string[];
|
||||||
|
priority?: number;
|
||||||
|
}): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
|
||||||
|
export declare function ShouldScoped(_target: any, _key: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => Promise<any>>): void;
|
||||||
|
29
dist/lib/reflected.js
vendored
29
dist/lib/reflected.js
vendored
@ -1,8 +1,10 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.LoggedParam = exports.InjectLogger = exports.loggedParam = exports.scopedLogger = void 0;
|
exports.ShouldScoped = exports.ScopeKey = exports.LoggedParam = exports.InjectLogger = exports.forceScopeKey = exports.scopeKey = exports.loggedParam = exports.scopedLogger = void 0;
|
||||||
exports.scopedLogger = Symbol("scopedLogger");
|
exports.scopedLogger = Symbol("nlogdec-scopedLogger");
|
||||||
exports.loggedParam = Symbol("loggedParam");
|
exports.loggedParam = Symbol("nlogdec-loggedParam");
|
||||||
|
exports.scopeKey = Symbol("nlogdec-scopeKey");
|
||||||
|
exports.forceScopeKey = Symbol("nlogdec-forceScopeKey");
|
||||||
function InjectLogger(target, propertyKey, parameterIndex) {
|
function InjectLogger(target, propertyKey, parameterIndex) {
|
||||||
Reflect.defineMetadata(exports.scopedLogger, parameterIndex, target, propertyKey);
|
Reflect.defineMetadata(exports.scopedLogger, parameterIndex, target, propertyKey);
|
||||||
}
|
}
|
||||||
@ -13,6 +15,7 @@ function LoggedParam(name, options) {
|
|||||||
existingLoggedParams.push({
|
existingLoggedParams.push({
|
||||||
name,
|
name,
|
||||||
index: parameterIndex,
|
index: parameterIndex,
|
||||||
|
// If path is provided in string[] type, convert it to string path because it is used in string type
|
||||||
include: options &&
|
include: options &&
|
||||||
options.includePath &&
|
options.includePath &&
|
||||||
options.includePath.map((v) => (Array.isArray(v) ? v.join(".") : v)),
|
options.includePath.map((v) => (Array.isArray(v) ? v.join(".") : v)),
|
||||||
@ -24,3 +27,23 @@ function LoggedParam(name, options) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
exports.LoggedParam = LoggedParam;
|
exports.LoggedParam = LoggedParam;
|
||||||
|
function ScopeKey(name, options) {
|
||||||
|
return (target, propertyKey, parameterIndex) => {
|
||||||
|
const existingScopeKeys = Reflect.getOwnMetadata(exports.scopeKey, target, propertyKey) || [];
|
||||||
|
existingScopeKeys.push({
|
||||||
|
name,
|
||||||
|
index: parameterIndex,
|
||||||
|
path: Array.isArray(options?.path)
|
||||||
|
? options.path
|
||||||
|
: options?.path?.split("."),
|
||||||
|
priority: options?.priority,
|
||||||
|
});
|
||||||
|
existingScopeKeys.sort((a, b) => (b.priority ?? 1) - (a.priority ?? 1));
|
||||||
|
Reflect.defineMetadata(exports.scopeKey, existingScopeKeys, target, propertyKey);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
exports.ScopeKey = ScopeKey;
|
||||||
|
function ShouldScoped(_target, _key, descriptor) {
|
||||||
|
Reflect.defineMetadata(exports.forceScopeKey, true, descriptor.value);
|
||||||
|
}
|
||||||
|
exports.ShouldScoped = ShouldScoped;
|
||||||
|
479
dist/yarn-error.log
vendored
Normal file
479
dist/yarn-error.log
vendored
Normal file
@ -0,0 +1,479 @@
|
|||||||
|
Arguments:
|
||||||
|
/home/psw/.nvm/versions/node/v20.9.0/bin/node /home/psw/.cache/node/corepack/yarn/1.22.19/bin/yarn.js publish dist
|
||||||
|
|
||||||
|
PATH:
|
||||||
|
/tmp/yarn--1702196001162-0.7616307789267913:/worker/projects/nestlogged/node_modules/.bin:/home/psw/.config/yarn/link/node_modules/.bin:/home/psw/.yarn/bin:/home/psw/.nvm/versions/node/v20.9.0/libexec/lib/node_modules/npm/bin/node-gyp-bin:/home/psw/.nvm/versions/node/v20.9.0/lib/node_modules/npm/bin/node-gyp-bin:/home/psw/.nvm/versions/node/v20.9.0/bin/node_modules/npm/bin/node-gyp-bin:/home/psw/.fly/bin:/home/psw/.local/bin:/home/psw/.pyenv/shims:/home/psw/.fly/bin:/home/psw/.local/bin:/home/psw/.pyenv/bin:/home/psw/.nvm/versions/node/v20.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/var/lib/flatpak/exports/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/rustup/bin:/var/lib/snapd/snap/bin
|
||||||
|
|
||||||
|
Yarn version:
|
||||||
|
1.22.19
|
||||||
|
|
||||||
|
Node version:
|
||||||
|
20.9.0
|
||||||
|
|
||||||
|
Platform:
|
||||||
|
linux x64
|
||||||
|
|
||||||
|
Trace:
|
||||||
|
Error: canceled
|
||||||
|
at Interface.<anonymous> (/home/psw/.cache/node/corepack/yarn/1.22.19/lib/cli.js:137150:13)
|
||||||
|
at Interface.emit (node:events:514:28)
|
||||||
|
at [_ttyWrite] [as _ttyWrite] (node:internal/readline/interface:1125:18)
|
||||||
|
at ReadStream.onkeypress (node:internal/readline/interface:264:20)
|
||||||
|
at ReadStream.emit (node:events:514:28)
|
||||||
|
at emitKeys (node:internal/readline/utils:371:14)
|
||||||
|
at emitKeys.next (<anonymous>)
|
||||||
|
at ReadStream.onData (node:internal/readline/emitKeypressEvents:64:36)
|
||||||
|
at ReadStream.emit (node:events:514:28)
|
||||||
|
at addChunk (node:internal/streams/readable:376:12)
|
||||||
|
|
||||||
|
npm manifest:
|
||||||
|
{
|
||||||
|
"name": "nestlogged",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A NestJS Logger Decorator Library",
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"repository": "https://github.com/worplo/nestlogged",
|
||||||
|
"author": "Shinwoo PARK",
|
||||||
|
"license": "MIT",
|
||||||
|
"private": false,
|
||||||
|
"dependencies": {
|
||||||
|
"@nestjs/common": "^10.2.8",
|
||||||
|
"reflect-metadata": "^0.1.13",
|
||||||
|
"rxjs": "^7.8.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^20.9.1",
|
||||||
|
"typescript": "^5.2.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
yarn manifest:
|
||||||
|
No manifest
|
||||||
|
|
||||||
|
Lockfile:
|
||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@cspotcode/source-map-support@^0.8.0":
|
||||||
|
version "0.8.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
|
||||||
|
integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==
|
||||||
|
dependencies:
|
||||||
|
"@jridgewell/trace-mapping" "0.3.9"
|
||||||
|
|
||||||
|
"@isaacs/cliui@^8.0.2":
|
||||||
|
version "8.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
|
||||||
|
integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
|
||||||
|
dependencies:
|
||||||
|
string-width "^5.1.2"
|
||||||
|
string-width-cjs "npm:string-width@^4.2.0"
|
||||||
|
strip-ansi "^7.0.1"
|
||||||
|
strip-ansi-cjs "npm:strip-ansi@^6.0.1"
|
||||||
|
wrap-ansi "^8.1.0"
|
||||||
|
wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
|
||||||
|
|
||||||
|
"@jridgewell/resolve-uri@^3.0.3":
|
||||||
|
version "3.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
|
||||||
|
integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
|
||||||
|
|
||||||
|
"@jridgewell/sourcemap-codec@^1.4.10":
|
||||||
|
version "1.4.15"
|
||||||
|
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
|
||||||
|
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
|
||||||
|
|
||||||
|
"@jridgewell/trace-mapping@0.3.9":
|
||||||
|
version "0.3.9"
|
||||||
|
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
|
||||||
|
integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
|
||||||
|
dependencies:
|
||||||
|
"@jridgewell/resolve-uri" "^3.0.3"
|
||||||
|
"@jridgewell/sourcemap-codec" "^1.4.10"
|
||||||
|
|
||||||
|
"@lukeed/csprng@^1.0.0":
|
||||||
|
version "1.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@lukeed/csprng/-/csprng-1.1.0.tgz#1e3e4bd05c1cc7a0b2ddbd8a03f39f6e4b5e6cfe"
|
||||||
|
integrity sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==
|
||||||
|
|
||||||
|
"@nestjs/common@^10.2.8":
|
||||||
|
version "10.2.8"
|
||||||
|
resolved "https://registry.yarnpkg.com/@nestjs/common/-/common-10.2.8.tgz#f8934e6353440d6e51c89c0cf1b0f9aef54e8729"
|
||||||
|
integrity sha512-rmpwcdvq2IWMmsUVP8rsdKub6uDWk7dwCYo0aif50JTwcvcxzaP3iKVFKoSgvp0RKYu8h15+/AEOfaInmPpl0Q==
|
||||||
|
dependencies:
|
||||||
|
uid "2.0.2"
|
||||||
|
iterare "1.2.1"
|
||||||
|
tslib "2.6.2"
|
||||||
|
|
||||||
|
"@pkgjs/parseargs@^0.11.0":
|
||||||
|
version "0.11.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
||||||
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
||||||
|
|
||||||
|
"@tsconfig/node10@^1.0.7":
|
||||||
|
version "1.0.9"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2"
|
||||||
|
integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==
|
||||||
|
|
||||||
|
"@tsconfig/node12@^1.0.7":
|
||||||
|
version "1.0.11"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d"
|
||||||
|
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==
|
||||||
|
|
||||||
|
"@tsconfig/node14@^1.0.0":
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1"
|
||||||
|
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==
|
||||||
|
|
||||||
|
"@tsconfig/node16@^1.0.2":
|
||||||
|
version "1.0.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9"
|
||||||
|
integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==
|
||||||
|
|
||||||
|
"@types/node@^20.9.1":
|
||||||
|
version "20.9.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.9.1.tgz#9d578c610ce1e984adda087f685ace940954fe19"
|
||||||
|
integrity sha512-HhmzZh5LSJNS5O8jQKpJ/3ZcrrlG6L70hpGqMIAoM9YVD0YBRNWYsfwcXq8VnSjlNpCpgLzMXdiPo+dxcvSmiA==
|
||||||
|
dependencies:
|
||||||
|
undici-types "~5.26.4"
|
||||||
|
|
||||||
|
acorn-walk@^8.1.1:
|
||||||
|
version "8.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.0.tgz#2097665af50fd0cf7a2dfccd2b9368964e66540f"
|
||||||
|
integrity sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==
|
||||||
|
|
||||||
|
acorn@^8.4.1:
|
||||||
|
version "8.11.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b"
|
||||||
|
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==
|
||||||
|
|
||||||
|
ansi-regex@^5.0.1:
|
||||||
|
version "5.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
|
||||||
|
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
|
||||||
|
|
||||||
|
ansi-regex@^6.0.1:
|
||||||
|
version "6.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
|
||||||
|
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
|
||||||
|
|
||||||
|
ansi-styles@^4.0.0:
|
||||||
|
version "4.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
||||||
|
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
||||||
|
dependencies:
|
||||||
|
color-convert "^2.0.1"
|
||||||
|
|
||||||
|
ansi-styles@^6.1.0:
|
||||||
|
version "6.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
|
||||||
|
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
|
||||||
|
|
||||||
|
arg@^4.1.0:
|
||||||
|
version "4.1.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
|
||||||
|
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
|
||||||
|
|
||||||
|
balanced-match@^1.0.0:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
||||||
|
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
||||||
|
|
||||||
|
brace-expansion@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
|
||||||
|
integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
|
||||||
|
dependencies:
|
||||||
|
balanced-match "^1.0.0"
|
||||||
|
|
||||||
|
color-convert@^2.0.1:
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
||||||
|
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
||||||
|
dependencies:
|
||||||
|
color-name "~1.1.4"
|
||||||
|
|
||||||
|
color-name@~1.1.4:
|
||||||
|
version "1.1.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
||||||
|
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
||||||
|
|
||||||
|
create-require@^1.1.0:
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
|
||||||
|
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
|
||||||
|
|
||||||
|
cross-spawn@^7.0.0:
|
||||||
|
version "7.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
||||||
|
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
||||||
|
dependencies:
|
||||||
|
path-key "^3.1.0"
|
||||||
|
shebang-command "^2.0.0"
|
||||||
|
which "^2.0.1"
|
||||||
|
|
||||||
|
diff@^4.0.1:
|
||||||
|
version "4.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
|
||||||
|
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
||||||
|
|
||||||
|
eastasianwidth@^0.2.0:
|
||||||
|
version "0.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
|
||||||
|
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
|
||||||
|
|
||||||
|
emoji-regex@^8.0.0:
|
||||||
|
version "8.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
||||||
|
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
||||||
|
|
||||||
|
emoji-regex@^9.2.2:
|
||||||
|
version "9.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
|
||||||
|
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
|
||||||
|
|
||||||
|
foreground-child@^3.1.0:
|
||||||
|
version "3.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
|
||||||
|
integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
|
||||||
|
dependencies:
|
||||||
|
cross-spawn "^7.0.0"
|
||||||
|
signal-exit "^4.0.1"
|
||||||
|
|
||||||
|
glob@^10.3.7:
|
||||||
|
version "10.3.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
|
||||||
|
integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
|
||||||
|
dependencies:
|
||||||
|
foreground-child "^3.1.0"
|
||||||
|
jackspeak "^2.3.5"
|
||||||
|
minimatch "^9.0.1"
|
||||||
|
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
|
||||||
|
path-scurry "^1.10.1"
|
||||||
|
|
||||||
|
is-fullwidth-code-point@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
||||||
|
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
||||||
|
|
||||||
|
isexe@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
||||||
|
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
|
||||||
|
|
||||||
|
iterare@1.2.1:
|
||||||
|
version "1.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/iterare/-/iterare-1.2.1.tgz#139c400ff7363690e33abffa33cbba8920f00042"
|
||||||
|
integrity sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==
|
||||||
|
|
||||||
|
jackspeak@^2.3.5:
|
||||||
|
version "2.3.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
|
||||||
|
integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
|
||||||
|
dependencies:
|
||||||
|
"@isaacs/cliui" "^8.0.2"
|
||||||
|
optionalDependencies:
|
||||||
|
"@pkgjs/parseargs" "^0.11.0"
|
||||||
|
|
||||||
|
lru-cache@^6.0.0:
|
||||||
|
version "6.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
||||||
|
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
|
||||||
|
dependencies:
|
||||||
|
yallist "^4.0.0"
|
||||||
|
|
||||||
|
"lru-cache@^9.1.1 || ^10.0.0":
|
||||||
|
version "10.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.2.tgz#34504678cc3266b09b8dfd6fab4e1515258271b7"
|
||||||
|
integrity sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==
|
||||||
|
dependencies:
|
||||||
|
semver "^7.3.5"
|
||||||
|
|
||||||
|
make-error@^1.1.1:
|
||||||
|
version "1.3.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
|
||||||
|
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
|
||||||
|
|
||||||
|
minimatch@^9.0.1:
|
||||||
|
version "9.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
|
||||||
|
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
|
||||||
|
dependencies:
|
||||||
|
brace-expansion "^2.0.1"
|
||||||
|
|
||||||
|
"minipass@^5.0.0 || ^6.0.2 || ^7.0.0":
|
||||||
|
version "7.0.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
|
||||||
|
integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
|
||||||
|
|
||||||
|
path-key@^3.1.0:
|
||||||
|
version "3.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
||||||
|
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
||||||
|
|
||||||
|
path-scurry@^1.10.1:
|
||||||
|
version "1.10.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
|
||||||
|
integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
|
||||||
|
dependencies:
|
||||||
|
lru-cache "^9.1.1 || ^10.0.0"
|
||||||
|
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
|
||||||
|
|
||||||
|
reflect-metadata@^0.1.13:
|
||||||
|
version "0.1.13"
|
||||||
|
resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08"
|
||||||
|
integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==
|
||||||
|
|
||||||
|
rimraf@^5.0.5:
|
||||||
|
version "5.0.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.5.tgz#9be65d2d6e683447d2e9013da2bf451139a61ccf"
|
||||||
|
integrity sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==
|
||||||
|
dependencies:
|
||||||
|
glob "^10.3.7"
|
||||||
|
|
||||||
|
rxjs@^7.8.1:
|
||||||
|
version "7.8.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
|
||||||
|
integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
|
||||||
|
dependencies:
|
||||||
|
tslib "^2.1.0"
|
||||||
|
|
||||||
|
semver@^7.3.5:
|
||||||
|
version "7.5.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
|
||||||
|
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
|
||||||
|
dependencies:
|
||||||
|
lru-cache "^6.0.0"
|
||||||
|
|
||||||
|
shebang-command@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
|
||||||
|
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
|
||||||
|
dependencies:
|
||||||
|
shebang-regex "^3.0.0"
|
||||||
|
|
||||||
|
shebang-regex@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
||||||
|
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
||||||
|
|
||||||
|
signal-exit@^4.0.1:
|
||||||
|
version "4.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
|
||||||
|
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
|
||||||
|
|
||||||
|
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0:
|
||||||
|
name string-width-cjs
|
||||||
|
version "4.2.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
|
||||||
|
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
|
||||||
|
dependencies:
|
||||||
|
emoji-regex "^8.0.0"
|
||||||
|
is-fullwidth-code-point "^3.0.0"
|
||||||
|
strip-ansi "^6.0.1"
|
||||||
|
|
||||||
|
string-width@^5.0.1, string-width@^5.1.2:
|
||||||
|
version "5.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
|
||||||
|
integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
|
||||||
|
dependencies:
|
||||||
|
eastasianwidth "^0.2.0"
|
||||||
|
emoji-regex "^9.2.2"
|
||||||
|
strip-ansi "^7.0.1"
|
||||||
|
|
||||||
|
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
|
||||||
|
name strip-ansi-cjs
|
||||||
|
version "6.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
||||||
|
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
||||||
|
dependencies:
|
||||||
|
ansi-regex "^5.0.1"
|
||||||
|
|
||||||
|
strip-ansi@^7.0.1:
|
||||||
|
version "7.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
|
||||||
|
integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
|
||||||
|
dependencies:
|
||||||
|
ansi-regex "^6.0.1"
|
||||||
|
|
||||||
|
ts-node@^10.9.1:
|
||||||
|
version "10.9.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
|
||||||
|
integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
|
||||||
|
dependencies:
|
||||||
|
"@cspotcode/source-map-support" "^0.8.0"
|
||||||
|
"@tsconfig/node10" "^1.0.7"
|
||||||
|
"@tsconfig/node12" "^1.0.7"
|
||||||
|
"@tsconfig/node14" "^1.0.0"
|
||||||
|
"@tsconfig/node16" "^1.0.2"
|
||||||
|
acorn "^8.4.1"
|
||||||
|
acorn-walk "^8.1.1"
|
||||||
|
arg "^4.1.0"
|
||||||
|
create-require "^1.1.0"
|
||||||
|
diff "^4.0.1"
|
||||||
|
make-error "^1.1.1"
|
||||||
|
v8-compile-cache-lib "^3.0.1"
|
||||||
|
yn "3.1.1"
|
||||||
|
|
||||||
|
tslib@2.6.2, tslib@^2.1.0:
|
||||||
|
version "2.6.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
|
||||||
|
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
|
||||||
|
|
||||||
|
typescript@^5.2.2:
|
||||||
|
version "5.2.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78"
|
||||||
|
integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==
|
||||||
|
|
||||||
|
uid@2.0.2:
|
||||||
|
version "2.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/uid/-/uid-2.0.2.tgz#4b5782abf0f2feeefc00fa88006b2b3b7af3e3b9"
|
||||||
|
integrity sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==
|
||||||
|
dependencies:
|
||||||
|
"@lukeed/csprng" "^1.0.0"
|
||||||
|
|
||||||
|
undici-types@~5.26.4:
|
||||||
|
version "5.26.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
|
||||||
|
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
|
||||||
|
|
||||||
|
v8-compile-cache-lib@^3.0.1:
|
||||||
|
version "3.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
|
||||||
|
integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==
|
||||||
|
|
||||||
|
which@^2.0.1:
|
||||||
|
version "2.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
||||||
|
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
|
||||||
|
dependencies:
|
||||||
|
isexe "^2.0.0"
|
||||||
|
|
||||||
|
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
|
||||||
|
version "7.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
||||||
|
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
||||||
|
dependencies:
|
||||||
|
ansi-styles "^4.0.0"
|
||||||
|
string-width "^4.1.0"
|
||||||
|
strip-ansi "^6.0.0"
|
||||||
|
|
||||||
|
wrap-ansi@^8.1.0:
|
||||||
|
version "8.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
|
||||||
|
integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
|
||||||
|
dependencies:
|
||||||
|
ansi-styles "^6.1.0"
|
||||||
|
string-width "^5.0.1"
|
||||||
|
strip-ansi "^7.0.1"
|
||||||
|
|
||||||
|
yallist@^4.0.0:
|
||||||
|
version "4.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
||||||
|
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
||||||
|
|
||||||
|
yn@3.1.1:
|
||||||
|
version "3.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
|
||||||
|
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
|
Loading…
x
Reference in New Issue
Block a user