@cenk1cenk2/oclif-common 7.0.29 → 7.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/{_@oxc-project_runtime@0.138.0 → _@oxc-project_runtime@0.139.0}/helpers/esm/decorate.mjs +1 -1
- package/dist/_virtual/{_@oxc-project_runtime@0.138.0 → _@oxc-project_runtime@0.139.0}/helpers/esm/decorateMetadata.mjs +1 -1
- package/dist/_virtual/{_@oxc-project_runtime@0.138.0 → _@oxc-project_runtime@0.139.0}/helpers/esm/decorateParam.mjs +1 -1
- package/dist/commands/base.command.d.mts +4 -1
- package/dist/hooks/not-found.hook.d.mts +0 -1
- package/dist/hooks/update-notifier.hook.d.mts +0 -1
- package/dist/index.d.mts +4 -0
- package/dist/interfaces/hooks.interface.d.mts +1 -1
- package/dist/interfaces/oclif.interface.d.mts +0 -1
- package/dist/interfaces/type-helper.interface.d.mts +1 -1
- package/dist/lib/cli.interface.d.mts +1 -0
- package/dist/lib/cli.module.d.mts +0 -1
- package/dist/lib/config/config.interface.d.mts +1 -1
- package/dist/lib/config/config.module.mjs +1 -1
- package/dist/lib/config/config.service.d.mts +3 -1
- package/dist/lib/config/config.service.mjs +3 -3
- package/dist/lib/fs/filesystem.module.mjs +1 -1
- package/dist/lib/fs/filesystem.service.d.mts +1 -1
- package/dist/lib/fs/filesystem.service.mjs +2 -2
- package/dist/lib/index.d.mts +7 -0
- package/dist/lib/locker/locker.interface.d.mts +3 -1
- package/dist/lib/locker/locker.module.d.mts +0 -1
- package/dist/lib/locker/locker.module.mjs +1 -1
- package/dist/lib/locker/locker.service.d.mts +3 -1
- package/dist/lib/locker/locker.service.mjs +2 -2
- package/dist/lib/logger/index.d.mts +1 -0
- package/dist/lib/logger/logger.interface.d.mts +0 -1
- package/dist/lib/logger/logger.module.mjs +1 -1
- package/dist/lib/logger/logger.service.d.mts +0 -1
- package/dist/lib/logger/logger.service.mjs +2 -2
- package/dist/lib/logger/pipe/pipe-process-to-listr.d.mts +0 -1
- package/dist/lib/logger/pipe/pipe-process-to-logger.d.mts +0 -1
- package/dist/lib/logger/pipe/pipe-process-to-logger.interface.d.mts +0 -1
- package/dist/lib/logger/winston.service.d.mts +1 -1
- package/dist/lib/logger/winston.service.mjs +3 -3
- package/dist/lib/logo/logo.constants.d.mts +0 -1
- package/dist/lib/logo/logo.interface.d.mts +0 -1
- package/dist/lib/logo/logo.module.mjs +1 -1
- package/dist/lib/logo/logo.service.d.mts +1 -1
- package/dist/lib/logo/logo.service.mjs +2 -2
- package/dist/lib/parser/fts/env-parser.service.d.mts +1 -1
- package/dist/lib/parser/fts/env-parser.service.mjs +2 -2
- package/dist/lib/parser/fts/json-parser.service.d.mts +1 -1
- package/dist/lib/parser/fts/json-parser.service.mjs +2 -2
- package/dist/lib/parser/fts/yaml-parser.service.d.mts +1 -1
- package/dist/lib/parser/fts/yaml-parser.service.mjs +2 -2
- package/dist/lib/parser/index.d.mts +1 -0
- package/dist/lib/parser/parser.module.mjs +1 -1
- package/dist/lib/parser/parser.service.d.mts +4 -1
- package/dist/lib/parser/parser.service.mjs +2 -2
- package/dist/lib/validator/validator.constants.d.mts +0 -1
- package/dist/lib/validator/validator.interface.d.mts +0 -1
- package/dist/lib/validator/validator.module.mjs +1 -1
- package/dist/lib/validator/validator.service.d.mts +2 -1
- package/dist/lib/validator/validator.service.mjs +2 -2
- package/dist/utils/defaults.d.mts +0 -1
- package/dist/utils/environment.d.mts +1 -0
- package/dist/utils/guards.d.mts +1 -1
- package/dist/utils/merge.d.mts +0 -1
- package/package.json +6 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region \0@oxc-project+runtime@0.
|
|
1
|
+
//#region \0@oxc-project+runtime@0.139.0/helpers/esm/decorate.js
|
|
2
2
|
function __decorate(decorators, target, key, desc) {
|
|
3
3
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
4
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region \0@oxc-project+runtime@0.
|
|
1
|
+
//#region \0@oxc-project+runtime@0.139.0/helpers/esm/decorateMetadata.js
|
|
2
2
|
function __decorateMetadata(k, v) {
|
|
3
3
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
4
4
|
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { PipeProcessToLoggerOptions } from "../lib/logger/pipe/pipe-process-to-logger.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../lib/logger/logger.service.mjs";
|
|
3
3
|
import { SetCtxAssignOptions, SetCtxDefaultsOptions } from "../utils/defaults.mjs";
|
|
4
|
+
import "../utils/index.mjs";
|
|
5
|
+
import "../lib/index.mjs";
|
|
4
6
|
import { InferArgs, InferFlags } from "../interfaces/oclif.interface.mjs";
|
|
7
|
+
import "../interfaces/index.mjs";
|
|
5
8
|
import { INestApplicationContext } from "@nestjs/common";
|
|
6
9
|
import { Manager } from "@listr2/manager";
|
|
7
10
|
import { Command } from "@oclif/core";
|
|
8
11
|
import { ListrContext, ListrTaskWrapper } from "listr2";
|
|
12
|
+
import "reflect-metadata";
|
|
9
13
|
import { ChildProcess } from "child_process";
|
|
10
|
-
|
|
11
14
|
//#region src/commands/base.command.d.ts
|
|
12
15
|
declare abstract class Command$1<T extends typeof Command = typeof Command, Ctx extends ListrContext = ListrContext> extends Command {
|
|
13
16
|
static baseFlags: {
|
package/dist/index.d.mts
CHANGED
|
@@ -39,13 +39,17 @@ import { ValidatorService } from "./lib/validator/validator.service.mjs";
|
|
|
39
39
|
import { setup } from "./lib/setup.mjs";
|
|
40
40
|
import { CliModuleOptions } from "./lib/cli.interface.mjs";
|
|
41
41
|
import { CliModule } from "./lib/cli.module.mjs";
|
|
42
|
+
import "./lib/index.mjs";
|
|
42
43
|
import { RegisterHook, ShouldRunAfterHook, ShouldRunBeforeHook } from "./interfaces/hooks.interface.mjs";
|
|
43
44
|
import { Arg, ArgInput, Args, Flag, FlagInput, Flags, InferArgs, InferFlags, InferredFlags } from "./interfaces/oclif.interface.mjs";
|
|
44
45
|
import { DeepPartial } from "./interfaces/type-helper.interface.mjs";
|
|
46
|
+
import "./interfaces/index.mjs";
|
|
45
47
|
import { Command } from "./commands/base.command.mjs";
|
|
48
|
+
import "./commands/index.mjs";
|
|
46
49
|
import { FileConstants } from "./constants/file.constants.mjs";
|
|
47
50
|
import { HelpGroups } from "./constants/help-groups.constants.mjs";
|
|
48
51
|
import { notFoundHook } from "./hooks/not-found.hook.mjs";
|
|
49
52
|
import { updateNotifierHook } from "./hooks/update-notifier.hook.mjs";
|
|
53
|
+
import "./hooks/index.mjs";
|
|
50
54
|
import { DynamicModule, Inject } from "@nestjs/common";
|
|
51
55
|
export { type Arg, type ArgInput, Args, type ClassType, CliModule, type CliModuleOptions, Command, type CommonLockerData, type ConfigIterator, ConfigModule, type ConfigModuleOptions, ConfigService, type DeepPartial, type DynamicModule, EnvironmentVariableParser, FileConstants, FileSystemService, FilesystemModule, type Flag, type FlagInput, Flags, GenericParser, type GlobalConfig, HelpGroups, InferArgs, InferFlags, type InferredFlags, Inject, JsonParser, type LockData, type LockableData, LockerModule, LockerService, type LockerServiceOptions, LogFieldStatus, LogLevels, type LoggerFormat, LoggerModule, LoggerService, type LogoGeneratorFn, LogoModule, LogoService, MergeStrategy, ParserModule, ParserService, type PipeProcessToLoggerOptions, RegisterHook, SetCtxAssignOptions, SetCtxDefaultsOptions, ShouldRunAfterHook, ShouldRunBeforeHook, TOKEN_LOGO_GENERATOR, TOKEN_VALIDATOR_SERVICE_OPTIONS, type UnlockData, ValidatorModule, ValidatorService, type ValidatorServiceOptions, type Winston, WinstonService, YamlParser, type fs, isDebug, isHookedWithRegister, isHookedWithShouldRunAfter, isHookedWithShouldRunBefore, isSilent, isVerbose, merge, notFoundHook, pipeProcessThroughListr, pipeProcessToLogger, setCtxAssign, setCtxDefaults, setup, uniqueArrayFilter, updateNotifierHook, ux };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CliModuleOptions } from "../lib/cli.interface.mjs";
|
|
2
|
+
import "../lib/index.mjs";
|
|
2
3
|
import { DynamicModule } from "@nestjs/common";
|
|
3
4
|
import { ListrContext } from "listr2";
|
|
4
|
-
|
|
5
5
|
//#region src/interfaces/hooks.interface.d.ts
|
|
6
6
|
declare class ShouldRunBeforeHook {
|
|
7
7
|
shouldRunBefore(): void | Promise<void>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Args, Command, Flags as Flags$1, Interfaces } from "@oclif/core";
|
|
2
2
|
import { Arg, ArgInput, Flag, FlagInput, InferredFlags } from "@oclif/core/interfaces";
|
|
3
|
-
|
|
4
3
|
//#region src/interfaces/oclif.interface.d.ts
|
|
5
4
|
type InferFlags<T extends typeof Command> = Interfaces.InferredFlags<(typeof Command)['baseFlags'] & T['flags']>;
|
|
6
5
|
type InferArgs<T extends typeof Command> = Interfaces.InferredArgs<T['args']>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { ConfigService } from "./config.service.mjs";
|
|
3
3
|
import { ParserModule } from "../parser/parser.module.mjs";
|
|
4
4
|
import { Global, Module } from "@nestjs/common";
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { ConfigModuleOptions, GlobalConfig } from "./config.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
3
|
+
import "../logger/index.mjs";
|
|
3
4
|
import { ParserService } from "../parser/parser.service.mjs";
|
|
4
5
|
import { MergeStrategy } from "../../utils/merge.constants.mjs";
|
|
6
|
+
import "../../utils/index.mjs";
|
|
5
7
|
import { LockableData } from "../locker/locker.interface.mjs";
|
|
8
|
+
import "../locker/index.mjs";
|
|
6
9
|
import { OnModuleInit } from "@nestjs/common";
|
|
7
10
|
import { Command, Config } from "@oclif/core";
|
|
8
|
-
|
|
9
11
|
//#region src/lib/config/config.service.d.ts
|
|
10
12
|
declare class ConfigService implements OnModuleInit {
|
|
11
13
|
private readonly parser;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { FileConstants } from "../../constants/file.constants.mjs";
|
|
2
2
|
import { TOKEN_CONFIG_MODULE_OPTIONS } from "./config.constants.mjs";
|
|
3
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
4
|
-
import __decorateParam from "../../_virtual/_@oxc-project_runtime@0.
|
|
5
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
3
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
4
|
+
import __decorateParam from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateParam.mjs";
|
|
5
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
6
6
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
7
7
|
import "../logger/index.mjs";
|
|
8
8
|
import { ParserService } from "../parser/parser.service.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { FileSystemService } from "./filesystem.service.mjs";
|
|
3
3
|
import { Global, Module } from "@nestjs/common";
|
|
4
4
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
2
|
+
import "../logger/index.mjs";
|
|
2
3
|
import { OnModuleInit } from "@nestjs/common";
|
|
3
4
|
import fs from "fs-extra";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/fs/filesystem.service.d.ts
|
|
6
6
|
declare class FileSystemService implements OnModuleInit {
|
|
7
7
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
4
4
|
import "../logger/index.mjs";
|
|
5
5
|
import { Injectable } from "@nestjs/common";
|
package/dist/lib/index.d.mts
CHANGED
|
@@ -8,6 +8,7 @@ import { WinstonService } from "./logger/winston.service.mjs";
|
|
|
8
8
|
import { LoggerService } from "./logger/logger.service.mjs";
|
|
9
9
|
import { pipeProcessToLogger } from "./logger/pipe/pipe-process-to-logger.mjs";
|
|
10
10
|
import { LoggerModule } from "./logger/logger.module.mjs";
|
|
11
|
+
import "./logger/index.mjs";
|
|
11
12
|
import { EnvironmentVariableParser } from "./parser/fts/env-parser.service.mjs";
|
|
12
13
|
import { JsonParser } from "./parser/fts/json-parser.service.mjs";
|
|
13
14
|
import { YamlParser } from "./parser/fts/yaml-parser.service.mjs";
|
|
@@ -15,20 +16,26 @@ import { ParserModule } from "./parser/parser.module.mjs";
|
|
|
15
16
|
import { fs } from "./fs/filesystem.interface.mjs";
|
|
16
17
|
import { FileSystemService } from "./fs/filesystem.service.mjs";
|
|
17
18
|
import { FilesystemModule } from "./fs/filesystem.module.mjs";
|
|
19
|
+
import "./fs/index.mjs";
|
|
18
20
|
import { ParserService } from "./parser/parser.service.mjs";
|
|
21
|
+
import "./parser/index.mjs";
|
|
19
22
|
import { CommonLockerData, LockData, LockableData, LockerServiceOptions, UnlockData } from "./locker/locker.interface.mjs";
|
|
20
23
|
import { LockerService } from "./locker/locker.service.mjs";
|
|
21
24
|
import { LockerModule } from "./locker/locker.module.mjs";
|
|
25
|
+
import "./locker/index.mjs";
|
|
22
26
|
import { ConfigService } from "./config/config.service.mjs";
|
|
23
27
|
import { ConfigModule } from "./config/config.module.mjs";
|
|
28
|
+
import "./config/index.mjs";
|
|
24
29
|
import { TOKEN_LOGO_GENERATOR } from "./logo/logo.constants.mjs";
|
|
25
30
|
import { LogoService } from "./logo/logo.service.mjs";
|
|
26
31
|
import { LogoGeneratorFn } from "./logo/logo.interface.mjs";
|
|
27
32
|
import { LogoModule } from "./logo/logo.module.mjs";
|
|
33
|
+
import "./logo/index.mjs";
|
|
28
34
|
import { TOKEN_VALIDATOR_SERVICE_OPTIONS } from "./validator/validator.constants.mjs";
|
|
29
35
|
import { ValidatorServiceOptions } from "./validator/validator.interface.mjs";
|
|
30
36
|
import { ValidatorModule } from "./validator/validator.module.mjs";
|
|
31
37
|
import { ValidatorService } from "./validator/validator.service.mjs";
|
|
38
|
+
import "./validator/index.mjs";
|
|
32
39
|
import { setup } from "./setup.mjs";
|
|
33
40
|
import { CliModuleOptions } from "./cli.interface.mjs";
|
|
34
41
|
import { CliModule } from "./cli.module.mjs";
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ClassType } from "../../interfaces/class.interface.mjs";
|
|
2
2
|
import { GenericParser } from "../parser/parser.interface.mjs";
|
|
3
|
+
import "../parser/index.mjs";
|
|
3
4
|
import { MergeStrategy } from "../../utils/merge.constants.mjs";
|
|
5
|
+
import "../../utils/index.mjs";
|
|
6
|
+
import "../../interfaces/index.mjs";
|
|
4
7
|
import { InjectionToken } from "@nestjs/common";
|
|
5
|
-
|
|
6
8
|
//#region src/lib/locker/locker.interface.d.ts
|
|
7
9
|
interface CommonLockerData {
|
|
8
10
|
path?: string | string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
3
3
|
import "../logger/index.mjs";
|
|
4
4
|
import { FileSystemService } from "../fs/filesystem.service.mjs";
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
2
|
+
import "../logger/index.mjs";
|
|
2
3
|
import { FileSystemService } from "../fs/filesystem.service.mjs";
|
|
4
|
+
import "../fs/index.mjs";
|
|
3
5
|
import { ParserService } from "../parser/parser.service.mjs";
|
|
6
|
+
import "../parser/index.mjs";
|
|
4
7
|
import { LockData, LockableData, LockerServiceOptions, UnlockData } from "./locker.interface.mjs";
|
|
5
8
|
import { OnModuleInit } from "@nestjs/common";
|
|
6
9
|
import op from "object-path-immutable";
|
|
7
|
-
|
|
8
10
|
//#region src/lib/locker/locker.service.d.ts
|
|
9
11
|
declare class LockerService<LockFile extends LockableData = LockableData> implements OnModuleInit {
|
|
10
12
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
4
4
|
import "../logger/index.mjs";
|
|
5
5
|
import { FileSystemService } from "../fs/filesystem.service.mjs";
|
|
@@ -5,5 +5,6 @@ import { LoggerFormat, Winston } from "./logger.interface.mjs";
|
|
|
5
5
|
import { WinstonService } from "./winston.service.mjs";
|
|
6
6
|
import { LoggerService } from "./logger.service.mjs";
|
|
7
7
|
import { pipeProcessToLogger } from "./pipe/pipe-process-to-logger.mjs";
|
|
8
|
+
import "./pipe/index.mjs";
|
|
8
9
|
import { LoggerModule } from "./logger.module.mjs";
|
|
9
10
|
export { LogFieldStatus, LogLevels, type LoggerFormat, LoggerModule, LoggerService, type PipeProcessToLoggerOptions, type Winston, WinstonService, pipeProcessThroughListr, pipeProcessToLogger };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { WinstonService } from "./winston.service.mjs";
|
|
3
3
|
import { LoggerService } from "./logger.service.mjs";
|
|
4
4
|
import { ConfigModule } from "../config/config.module.mjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LogFieldStatus, LogLevels } from "./logger.constants.mjs";
|
|
2
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
3
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
3
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
4
4
|
import { WinstonService } from "./winston.service.mjs";
|
|
5
5
|
import { Injectable, Scope } from "@nestjs/common";
|
|
6
6
|
import { splat } from "listr2";
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ListrTaskWrapper } from "listr2";
|
|
2
2
|
import { ChildProcess } from "child_process";
|
|
3
|
-
|
|
4
3
|
//#region src/lib/logger/pipe/pipe-process-to-listr.d.ts
|
|
5
4
|
declare function pipeProcessThroughListr(task: ListrTaskWrapper<any, any, any>, instance: ChildProcess): ChildProcess;
|
|
6
5
|
//#endregion
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PipeProcessToLoggerOptions } from "./pipe-process-to-logger.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../logger.service.mjs";
|
|
3
3
|
import { ChildProcess } from "child_process";
|
|
4
|
-
|
|
5
4
|
//#region src/lib/logger/pipe/pipe-process-to-logger.d.ts
|
|
6
5
|
/**
|
|
7
6
|
* Given the instance it will pipe process output through the logger to append prefixes such as the application name.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConfigModuleOptions } from "../config/config.interface.mjs";
|
|
2
2
|
import { Winston } from "./logger.interface.mjs";
|
|
3
|
+
import "../index.mjs";
|
|
3
4
|
import { OnModuleInit } from "@nestjs/common";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/logger/winston.service.d.ts
|
|
6
6
|
declare class WinstonService implements OnModuleInit {
|
|
7
7
|
private readonly options;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TOKEN_CONFIG_MODULE_OPTIONS } from "../config/config.constants.mjs";
|
|
2
2
|
import { LogLevels } from "./logger.constants.mjs";
|
|
3
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
4
|
-
import __decorateParam from "../../_virtual/_@oxc-project_runtime@0.
|
|
5
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
3
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
4
|
+
import __decorateParam from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateParam.mjs";
|
|
5
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
6
6
|
import { Inject, Injectable } from "@nestjs/common";
|
|
7
7
|
import { color, figures } from "listr2";
|
|
8
8
|
import { EOL } from "os";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { LogoService } from "./logo.service.mjs";
|
|
3
3
|
import { Module } from "@nestjs/common";
|
|
4
4
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ConfigService } from "../config/config.service.mjs";
|
|
2
|
+
import "../config/index.mjs";
|
|
2
3
|
import { OnModuleInit } from "@nestjs/common";
|
|
3
4
|
import { ModuleRef } from "@nestjs/core";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/logo/logo.service.d.ts
|
|
6
6
|
declare class LogoService implements OnModuleInit {
|
|
7
7
|
readonly cs: ConfigService;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { ConfigService } from "../config/config.service.mjs";
|
|
4
4
|
import "../config/index.mjs";
|
|
5
5
|
import { TOKEN_LOGO_GENERATOR } from "./logo.constants.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GenericParser } from "../parser.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
3
|
+
import "../../logger/index.mjs";
|
|
3
4
|
import { OnModuleInit } from "@nestjs/common";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/parser/fts/env-parser.service.d.ts
|
|
6
6
|
declare class EnvironmentVariableParser implements GenericParser, OnModuleInit {
|
|
7
7
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
4
4
|
import "../../logger/index.mjs";
|
|
5
5
|
import { Injectable } from "@nestjs/common";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GenericParser } from "../parser.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
3
|
+
import "../../logger/index.mjs";
|
|
3
4
|
import { OnModuleInit } from "@nestjs/common";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/parser/fts/json-parser.service.d.ts
|
|
6
6
|
declare class JsonParser implements GenericParser, OnModuleInit {
|
|
7
7
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
4
4
|
import "../../logger/index.mjs";
|
|
5
5
|
import { Injectable } from "@nestjs/common";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GenericParser } from "../parser.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
3
|
+
import "../../logger/index.mjs";
|
|
3
4
|
import { OnModuleInit } from "@nestjs/common";
|
|
4
|
-
|
|
5
5
|
//#region src/lib/parser/fts/yaml-parser.service.d.ts
|
|
6
6
|
declare class YamlParser implements GenericParser, OnModuleInit {
|
|
7
7
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../../logger/logger.service.mjs";
|
|
4
4
|
import "../../logger/index.mjs";
|
|
5
5
|
import { Injectable } from "@nestjs/common";
|
|
@@ -2,6 +2,7 @@ import { GenericParser } from "./parser.interface.mjs";
|
|
|
2
2
|
import { EnvironmentVariableParser } from "./fts/env-parser.service.mjs";
|
|
3
3
|
import { JsonParser } from "./fts/json-parser.service.mjs";
|
|
4
4
|
import { YamlParser } from "./fts/yaml-parser.service.mjs";
|
|
5
|
+
import "./fts/index.mjs";
|
|
5
6
|
import { ParserModule } from "./parser.module.mjs";
|
|
6
7
|
import { ParserService } from "./parser.service.mjs";
|
|
7
8
|
export { EnvironmentVariableParser, GenericParser, JsonParser, ParserModule, ParserService, YamlParser };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { FilesystemModule } from "../fs/filesystem.module.mjs";
|
|
3
3
|
import "../fs/index.mjs";
|
|
4
4
|
import { ParserService } from "./parser.service.mjs";
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { ClassType } from "../../interfaces/class.interface.mjs";
|
|
2
2
|
import { GenericParser } from "./parser.interface.mjs";
|
|
3
3
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
4
|
+
import "../logger/index.mjs";
|
|
4
5
|
import { FileSystemService } from "../fs/filesystem.service.mjs";
|
|
6
|
+
import "../fs/index.mjs";
|
|
5
7
|
import { LockableData } from "../locker/locker.interface.mjs";
|
|
8
|
+
import "../locker/index.mjs";
|
|
9
|
+
import "../../interfaces/index.mjs";
|
|
6
10
|
import { OnModuleInit } from "@nestjs/common";
|
|
7
11
|
import { ModuleRef } from "@nestjs/core";
|
|
8
|
-
|
|
9
12
|
//#region src/lib/parser/parser.service.d.ts
|
|
10
13
|
declare class ParserService implements OnModuleInit {
|
|
11
14
|
private moduleRef;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
4
4
|
import "../logger/index.mjs";
|
|
5
5
|
import { FileSystemService } from "../fs/filesystem.service.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
2
2
|
import { ValidatorService } from "./validator.service.mjs";
|
|
3
3
|
import { Global, Module } from "@nestjs/common";
|
|
4
4
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ClassType } from "../../interfaces/class.interface.mjs";
|
|
2
2
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
3
|
+
import "../logger/index.mjs";
|
|
3
4
|
import { ValidatorServiceOptions } from "./validator.interface.mjs";
|
|
5
|
+
import "../../interfaces/index.mjs";
|
|
4
6
|
import { OnModuleInit } from "@nestjs/common";
|
|
5
7
|
import { ModuleRef } from "@nestjs/core";
|
|
6
|
-
|
|
7
8
|
//#region src/lib/validator/validator.service.d.ts
|
|
8
9
|
declare class ValidatorService implements OnModuleInit {
|
|
9
10
|
private readonly logger;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.
|
|
2
|
-
import __decorate from "../../_virtual/_@oxc-project_runtime@0.
|
|
1
|
+
import __decorateMetadata from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorateMetadata.mjs";
|
|
2
|
+
import __decorate from "../../_virtual/_@oxc-project_runtime@0.139.0/helpers/esm/decorate.mjs";
|
|
3
3
|
import { LoggerService } from "../logger/logger.service.mjs";
|
|
4
4
|
import "../logger/index.mjs";
|
|
5
5
|
import { TOKEN_VALIDATOR_SERVICE_OPTIONS } from "./validator.constants.mjs";
|
package/dist/utils/guards.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RegisterHook, ShouldRunAfterHook, ShouldRunBeforeHook } from "../interfaces/hooks.interface.mjs";
|
|
2
|
+
import "../interfaces/index.mjs";
|
|
2
3
|
import { Command } from "@oclif/core";
|
|
3
|
-
|
|
4
4
|
//#region src/utils/guards.d.ts
|
|
5
5
|
declare function isHookedWithShouldRunBefore<T extends Command = Command>(command: T): command is T & ShouldRunBeforeHook;
|
|
6
6
|
declare function isHookedWithShouldRunAfter<T extends Command = Command>(command: T): command is T & ShouldRunAfterHook<any>;
|
package/dist/utils/merge.d.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenk1cenk2/oclif-common",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.31",
|
|
4
4
|
"description": "Oclif common package for oclif2 projects.",
|
|
5
5
|
"repository": "https://gitlab.kilic.dev/libraries/oclif-tools",
|
|
6
6
|
"type": "module",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@nestjs/common": "^11.1.
|
|
49
|
-
"@nestjs/core": "^11.1.
|
|
50
|
-
"@oxc-project/runtime": "^0.
|
|
48
|
+
"@nestjs/common": "^11.1.28",
|
|
49
|
+
"@nestjs/core": "^11.1.28",
|
|
50
|
+
"@oxc-project/runtime": "^0.139.0",
|
|
51
51
|
"deepmerge": "^4.3.1",
|
|
52
52
|
"object-path-immutable": "^4.1.2",
|
|
53
53
|
"reflect-metadata": "^0.2.1",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@listr2/manager": "^4.2.2",
|
|
58
|
-
"@oclif/core": "^4.11.
|
|
58
|
+
"@oclif/core": "^4.11.14",
|
|
59
59
|
"@types/fs-extra": "^11.0.4",
|
|
60
|
-
"@types/node": "^24.13.
|
|
60
|
+
"@types/node": "^24.13.3",
|
|
61
61
|
"@types/through": "^0.0.33",
|
|
62
62
|
"@types/update-notifier": "^6.0.8",
|
|
63
63
|
"class-transformer": "^0.5.1",
|