@storm-software/config-tools 1.130.1 → 1.130.2
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/{chunk-BO45V6E2.mjs → chunk-64RYHF5D.mjs} +1 -1
- package/dist/{chunk-RYIDKM6L.mjs → chunk-7KVSSDMX.mjs} +1 -1
- package/dist/{chunk-VFRDDJD4.js → chunk-HCF3QA4H.js} +14 -14
- package/dist/{chunk-LCD7F65X.js → chunk-JDK3PXQR.js} +3 -3
- package/dist/{chunk-BNNLKDKI.mjs → chunk-Z2EXWNIQ.mjs} +9 -9
- package/dist/{chunk-5P4S7DMV.js → chunk-ZVXEYJQO.js} +9 -9
- package/dist/config-file/get-config-file.js +7 -7
- package/dist/config-file/get-config-file.mjs +6 -6
- package/dist/config-file/index.js +7 -7
- package/dist/config-file/index.mjs +6 -6
- package/dist/create-storm-config.js +10 -10
- package/dist/create-storm-config.mjs +9 -9
- package/dist/env/index.js +1 -1
- package/dist/env/index.mjs +1 -1
- package/dist/index.js +18 -18
- package/dist/index.mjs +26 -26
- package/dist/logger/chalk.d.mts +25 -0
- package/dist/logger/chalk.d.ts +25 -0
- package/dist/logger/chalk.js +7 -0
- package/dist/logger/chalk.mjs +7 -0
- package/dist/logger/console.d.mts +82 -0
- package/dist/logger/console.d.ts +82 -0
- package/dist/logger/console.js +35 -0
- package/dist/logger/console.mjs +35 -0
- package/dist/logger/get-log-level.d.mts +27 -0
- package/dist/logger/get-log-level.d.ts +27 -0
- package/dist/logger/get-log-level.js +12 -0
- package/dist/logger/get-log-level.mjs +12 -0
- package/dist/logger/index.d.mts +6 -0
- package/dist/logger/index.d.ts +6 -0
- package/dist/logger/index.js +46 -0
- package/dist/logger/index.mjs +46 -0
- package/dist/utilities/index.js +8 -8
- package/dist/utilities/index.mjs +11 -11
- package/dist/utilities/process-handler.js +4 -4
- package/dist/utilities/process-handler.mjs +3 -3
- package/package.json +1 -1
- package/dist/{chunk-RHGJNRVE.mjs → chunk-66ACWURQ.mjs} +3 -3
- package/dist/{chunk-T2X5W62C.js → chunk-OXK45X3L.js} +3 -3
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
type GetChalkReturn = {
|
|
2
|
+
hex: (_: string) => (message?: string) => string | undefined;
|
|
3
|
+
bgHex: (_: string) => {
|
|
4
|
+
whiteBright: (message?: string) => string | undefined;
|
|
5
|
+
};
|
|
6
|
+
whiteBright: (message?: string) => string | undefined;
|
|
7
|
+
bold: {
|
|
8
|
+
hex: (_: string) => (message?: string) => string | undefined;
|
|
9
|
+
bgHex: (_: string) => {
|
|
10
|
+
whiteBright: (message?: string) => string | undefined;
|
|
11
|
+
};
|
|
12
|
+
whiteBright: (message?: string) => string | undefined;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Get the chalk instance
|
|
17
|
+
*
|
|
18
|
+
* @remarks
|
|
19
|
+
* Annoying polyfill to temporarily fix the issue with the `chalk` import
|
|
20
|
+
*
|
|
21
|
+
* @returns The chalk instance
|
|
22
|
+
*/
|
|
23
|
+
declare const getChalk: () => GetChalkReturn;
|
|
24
|
+
|
|
25
|
+
export { type GetChalkReturn, getChalk };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
type GetChalkReturn = {
|
|
2
|
+
hex: (_: string) => (message?: string) => string | undefined;
|
|
3
|
+
bgHex: (_: string) => {
|
|
4
|
+
whiteBright: (message?: string) => string | undefined;
|
|
5
|
+
};
|
|
6
|
+
whiteBright: (message?: string) => string | undefined;
|
|
7
|
+
bold: {
|
|
8
|
+
hex: (_: string) => (message?: string) => string | undefined;
|
|
9
|
+
bgHex: (_: string) => {
|
|
10
|
+
whiteBright: (message?: string) => string | undefined;
|
|
11
|
+
};
|
|
12
|
+
whiteBright: (message?: string) => string | undefined;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Get the chalk instance
|
|
17
|
+
*
|
|
18
|
+
* @remarks
|
|
19
|
+
* Annoying polyfill to temporarily fix the issue with the `chalk` import
|
|
20
|
+
*
|
|
21
|
+
* @returns The chalk instance
|
|
22
|
+
*/
|
|
23
|
+
declare const getChalk: () => GetChalkReturn;
|
|
24
|
+
|
|
25
|
+
export { type GetChalkReturn, getChalk };
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { S as StormConfig } from '../types-DGWqy1xb.mjs';
|
|
2
|
+
import { LogLevel } from '../types.mjs';
|
|
3
|
+
import 'zod';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Get the log function for a log level
|
|
7
|
+
*
|
|
8
|
+
* @param logLevel - The log level
|
|
9
|
+
* @param config - The Storm configuration
|
|
10
|
+
* @returns The log function
|
|
11
|
+
*/
|
|
12
|
+
declare const getLogFn: (logLevel?: number | LogLevel, config?: Partial<StormConfig>) => ((message?: any) => void);
|
|
13
|
+
/**
|
|
14
|
+
* Write a message to the console at the `fatal` log level
|
|
15
|
+
*
|
|
16
|
+
* @param message - The message to write
|
|
17
|
+
* @param config - The Storm configuration
|
|
18
|
+
*/
|
|
19
|
+
declare const writeFatal: (message?: any, config?: Partial<StormConfig>) => void;
|
|
20
|
+
/**
|
|
21
|
+
* Write a message to the console at the `error` log level
|
|
22
|
+
*
|
|
23
|
+
* @param message - The message to write
|
|
24
|
+
* @param config - The Storm configuration
|
|
25
|
+
*/
|
|
26
|
+
declare const writeError: (message?: any, config?: Partial<StormConfig>) => void;
|
|
27
|
+
/**
|
|
28
|
+
* Write a message to the console at the `warning` log level
|
|
29
|
+
*
|
|
30
|
+
* @param message - The message to write
|
|
31
|
+
* @param config - The Storm configuration
|
|
32
|
+
*/
|
|
33
|
+
declare const writeWarning: (message?: any, config?: Partial<StormConfig>) => void;
|
|
34
|
+
/**
|
|
35
|
+
* Write a message to the console at the `info` log level
|
|
36
|
+
*
|
|
37
|
+
* @param message - The message to write
|
|
38
|
+
* @param config - The Storm configuration
|
|
39
|
+
*/
|
|
40
|
+
declare const writeInfo: (message?: any, config?: Partial<StormConfig>) => void;
|
|
41
|
+
/**
|
|
42
|
+
* Write a message to the console at the `success` log level
|
|
43
|
+
*
|
|
44
|
+
* @param message - The message to write
|
|
45
|
+
* @param config - The Storm configuration
|
|
46
|
+
*/
|
|
47
|
+
declare const writeSuccess: (message?: any, config?: Partial<StormConfig>) => void;
|
|
48
|
+
/**
|
|
49
|
+
* Write a message to the console at the `debug` log level
|
|
50
|
+
*
|
|
51
|
+
* @param message - The message to write
|
|
52
|
+
* @param config - The Storm configuration
|
|
53
|
+
*/
|
|
54
|
+
declare const writeDebug: (message?: any, config?: Partial<StormConfig>) => void;
|
|
55
|
+
/**
|
|
56
|
+
* Write a message to the console at the `trace` log level
|
|
57
|
+
*
|
|
58
|
+
* @param message - The message to write
|
|
59
|
+
* @param config - The Storm configuration
|
|
60
|
+
*/
|
|
61
|
+
declare const writeTrace: (message?: any, config?: Partial<StormConfig>) => void;
|
|
62
|
+
/**
|
|
63
|
+
* Write a message to the console at the `all` log level
|
|
64
|
+
*
|
|
65
|
+
* @param message - The message to write
|
|
66
|
+
* @param config - The Storm configuration
|
|
67
|
+
*/
|
|
68
|
+
declare const writeSystem: (message?: any, config?: Partial<StormConfig>) => void;
|
|
69
|
+
/**
|
|
70
|
+
* Get a stopwatch function
|
|
71
|
+
*
|
|
72
|
+
* @param name - The name of the process
|
|
73
|
+
* @returns The stopwatch function
|
|
74
|
+
*/
|
|
75
|
+
declare const getStopwatch: (name: string) => () => void;
|
|
76
|
+
type FormatLogMessageOptions = {
|
|
77
|
+
prefix?: string;
|
|
78
|
+
skip?: string[];
|
|
79
|
+
};
|
|
80
|
+
declare const formatLogMessage: (message?: any, options?: FormatLogMessageOptions, depth?: number) => string;
|
|
81
|
+
|
|
82
|
+
export { type FormatLogMessageOptions, formatLogMessage, getLogFn, getStopwatch, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeSystem, writeTrace, writeWarning };
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { S as StormConfig } from '../types-DGWqy1xb.js';
|
|
2
|
+
import { LogLevel } from '../types.js';
|
|
3
|
+
import 'zod';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Get the log function for a log level
|
|
7
|
+
*
|
|
8
|
+
* @param logLevel - The log level
|
|
9
|
+
* @param config - The Storm configuration
|
|
10
|
+
* @returns The log function
|
|
11
|
+
*/
|
|
12
|
+
declare const getLogFn: (logLevel?: number | LogLevel, config?: Partial<StormConfig>) => ((message?: any) => void);
|
|
13
|
+
/**
|
|
14
|
+
* Write a message to the console at the `fatal` log level
|
|
15
|
+
*
|
|
16
|
+
* @param message - The message to write
|
|
17
|
+
* @param config - The Storm configuration
|
|
18
|
+
*/
|
|
19
|
+
declare const writeFatal: (message?: any, config?: Partial<StormConfig>) => void;
|
|
20
|
+
/**
|
|
21
|
+
* Write a message to the console at the `error` log level
|
|
22
|
+
*
|
|
23
|
+
* @param message - The message to write
|
|
24
|
+
* @param config - The Storm configuration
|
|
25
|
+
*/
|
|
26
|
+
declare const writeError: (message?: any, config?: Partial<StormConfig>) => void;
|
|
27
|
+
/**
|
|
28
|
+
* Write a message to the console at the `warning` log level
|
|
29
|
+
*
|
|
30
|
+
* @param message - The message to write
|
|
31
|
+
* @param config - The Storm configuration
|
|
32
|
+
*/
|
|
33
|
+
declare const writeWarning: (message?: any, config?: Partial<StormConfig>) => void;
|
|
34
|
+
/**
|
|
35
|
+
* Write a message to the console at the `info` log level
|
|
36
|
+
*
|
|
37
|
+
* @param message - The message to write
|
|
38
|
+
* @param config - The Storm configuration
|
|
39
|
+
*/
|
|
40
|
+
declare const writeInfo: (message?: any, config?: Partial<StormConfig>) => void;
|
|
41
|
+
/**
|
|
42
|
+
* Write a message to the console at the `success` log level
|
|
43
|
+
*
|
|
44
|
+
* @param message - The message to write
|
|
45
|
+
* @param config - The Storm configuration
|
|
46
|
+
*/
|
|
47
|
+
declare const writeSuccess: (message?: any, config?: Partial<StormConfig>) => void;
|
|
48
|
+
/**
|
|
49
|
+
* Write a message to the console at the `debug` log level
|
|
50
|
+
*
|
|
51
|
+
* @param message - The message to write
|
|
52
|
+
* @param config - The Storm configuration
|
|
53
|
+
*/
|
|
54
|
+
declare const writeDebug: (message?: any, config?: Partial<StormConfig>) => void;
|
|
55
|
+
/**
|
|
56
|
+
* Write a message to the console at the `trace` log level
|
|
57
|
+
*
|
|
58
|
+
* @param message - The message to write
|
|
59
|
+
* @param config - The Storm configuration
|
|
60
|
+
*/
|
|
61
|
+
declare const writeTrace: (message?: any, config?: Partial<StormConfig>) => void;
|
|
62
|
+
/**
|
|
63
|
+
* Write a message to the console at the `all` log level
|
|
64
|
+
*
|
|
65
|
+
* @param message - The message to write
|
|
66
|
+
* @param config - The Storm configuration
|
|
67
|
+
*/
|
|
68
|
+
declare const writeSystem: (message?: any, config?: Partial<StormConfig>) => void;
|
|
69
|
+
/**
|
|
70
|
+
* Get a stopwatch function
|
|
71
|
+
*
|
|
72
|
+
* @param name - The name of the process
|
|
73
|
+
* @returns The stopwatch function
|
|
74
|
+
*/
|
|
75
|
+
declare const getStopwatch: (name: string) => () => void;
|
|
76
|
+
type FormatLogMessageOptions = {
|
|
77
|
+
prefix?: string;
|
|
78
|
+
skip?: string[];
|
|
79
|
+
};
|
|
80
|
+
declare const formatLogMessage: (message?: any, options?: FormatLogMessageOptions, depth?: number) => string;
|
|
81
|
+
|
|
82
|
+
export { type FormatLogMessageOptions, formatLogMessage, getLogFn, getStopwatch, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeSystem, writeTrace, writeWarning };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
var _chunkOXK45X3Ljs = require('../chunk-OXK45X3L.js');
|
|
14
|
+
require('../chunk-N32EGEJB.js');
|
|
15
|
+
require('../chunk-6SJLAEJ3.js');
|
|
16
|
+
require('../chunk-N4BRCEYB.js');
|
|
17
|
+
require('../chunk-GIZ23UUE.js');
|
|
18
|
+
require('../chunk-WXOSG64C.js');
|
|
19
|
+
require('../chunk-H6XXDZ7A.js');
|
|
20
|
+
require('../chunk-6WPG3DXV.js');
|
|
21
|
+
require('../chunk-BS5OC5E6.js');
|
|
22
|
+
require('../chunk-XJEQHMOE.js');
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
exports.formatLogMessage = _chunkOXK45X3Ljs.formatLogMessage; exports.getLogFn = _chunkOXK45X3Ljs.getLogFn; exports.getStopwatch = _chunkOXK45X3Ljs.getStopwatch; exports.writeDebug = _chunkOXK45X3Ljs.writeDebug; exports.writeError = _chunkOXK45X3Ljs.writeError; exports.writeFatal = _chunkOXK45X3Ljs.writeFatal; exports.writeInfo = _chunkOXK45X3Ljs.writeInfo; exports.writeSuccess = _chunkOXK45X3Ljs.writeSuccess; exports.writeSystem = _chunkOXK45X3Ljs.writeSystem; exports.writeTrace = _chunkOXK45X3Ljs.writeTrace; exports.writeWarning = _chunkOXK45X3Ljs.writeWarning;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import {
|
|
2
|
+
formatLogMessage,
|
|
3
|
+
getLogFn,
|
|
4
|
+
getStopwatch,
|
|
5
|
+
writeDebug,
|
|
6
|
+
writeError,
|
|
7
|
+
writeFatal,
|
|
8
|
+
writeInfo,
|
|
9
|
+
writeSuccess,
|
|
10
|
+
writeSystem,
|
|
11
|
+
writeTrace,
|
|
12
|
+
writeWarning
|
|
13
|
+
} from "../chunk-66ACWURQ.mjs";
|
|
14
|
+
import "../chunk-PVPSTJNJ.mjs";
|
|
15
|
+
import "../chunk-TEKFJAJJ.mjs";
|
|
16
|
+
import "../chunk-TTCXDK6S.mjs";
|
|
17
|
+
import "../chunk-RAWSXKTG.mjs";
|
|
18
|
+
import "../chunk-UCUOC6LA.mjs";
|
|
19
|
+
import "../chunk-GOQAHXJF.mjs";
|
|
20
|
+
import "../chunk-VQLOUFMG.mjs";
|
|
21
|
+
import "../chunk-4IYEDNYJ.mjs";
|
|
22
|
+
import "../chunk-WRFJFYOU.mjs";
|
|
23
|
+
export {
|
|
24
|
+
formatLogMessage,
|
|
25
|
+
getLogFn,
|
|
26
|
+
getStopwatch,
|
|
27
|
+
writeDebug,
|
|
28
|
+
writeError,
|
|
29
|
+
writeFatal,
|
|
30
|
+
writeInfo,
|
|
31
|
+
writeSuccess,
|
|
32
|
+
writeSystem,
|
|
33
|
+
writeTrace,
|
|
34
|
+
writeWarning
|
|
35
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { LogLevel, LogLevelLabel } from '../types.mjs';
|
|
2
|
+
import '../types-DGWqy1xb.mjs';
|
|
3
|
+
import 'zod';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Convert the log level label to a log level
|
|
7
|
+
*
|
|
8
|
+
* @param label - The log level label to convert
|
|
9
|
+
* @returns The log level
|
|
10
|
+
*/
|
|
11
|
+
declare const getLogLevel: (label?: string) => LogLevel;
|
|
12
|
+
/**
|
|
13
|
+
* Convert the log level to a log level label
|
|
14
|
+
*
|
|
15
|
+
* @param logLevel - The log level to convert
|
|
16
|
+
* @returns The log level label
|
|
17
|
+
*/
|
|
18
|
+
declare const getLogLevelLabel: (logLevel?: number) => LogLevelLabel;
|
|
19
|
+
/**
|
|
20
|
+
* Check if the log level is verbose
|
|
21
|
+
*
|
|
22
|
+
* @param label - The log level label to check
|
|
23
|
+
* @returns True if the log level is verbose
|
|
24
|
+
*/
|
|
25
|
+
declare const isVerbose: (label?: string | LogLevel) => boolean;
|
|
26
|
+
|
|
27
|
+
export { getLogLevel, getLogLevelLabel, isVerbose };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { LogLevel, LogLevelLabel } from '../types.js';
|
|
2
|
+
import '../types-DGWqy1xb.js';
|
|
3
|
+
import 'zod';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Convert the log level label to a log level
|
|
7
|
+
*
|
|
8
|
+
* @param label - The log level label to convert
|
|
9
|
+
* @returns The log level
|
|
10
|
+
*/
|
|
11
|
+
declare const getLogLevel: (label?: string) => LogLevel;
|
|
12
|
+
/**
|
|
13
|
+
* Convert the log level to a log level label
|
|
14
|
+
*
|
|
15
|
+
* @param logLevel - The log level to convert
|
|
16
|
+
* @returns The log level label
|
|
17
|
+
*/
|
|
18
|
+
declare const getLogLevelLabel: (logLevel?: number) => LogLevelLabel;
|
|
19
|
+
/**
|
|
20
|
+
* Check if the log level is verbose
|
|
21
|
+
*
|
|
22
|
+
* @param label - The log level label to check
|
|
23
|
+
* @returns True if the log level is verbose
|
|
24
|
+
*/
|
|
25
|
+
declare const isVerbose: (label?: string | LogLevel) => boolean;
|
|
26
|
+
|
|
27
|
+
export { getLogLevel, getLogLevelLabel, isVerbose };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
var _chunkWXOSG64Cjs = require('../chunk-WXOSG64C.js');
|
|
6
|
+
require('../chunk-6WPG3DXV.js');
|
|
7
|
+
require('../chunk-XJEQHMOE.js');
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
exports.getLogLevel = _chunkWXOSG64Cjs.getLogLevel; exports.getLogLevelLabel = _chunkWXOSG64Cjs.getLogLevelLabel; exports.isVerbose = _chunkWXOSG64Cjs.isVerbose;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { GetChalkReturn, getChalk } from './chalk.mjs';
|
|
2
|
+
export { FormatLogMessageOptions, formatLogMessage, getLogFn, getStopwatch, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeSystem, writeTrace, writeWarning } from './console.mjs';
|
|
3
|
+
export { getLogLevel, getLogLevelLabel, isVerbose } from './get-log-level.mjs';
|
|
4
|
+
import '../types-DGWqy1xb.mjs';
|
|
5
|
+
import 'zod';
|
|
6
|
+
import '../types.mjs';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { GetChalkReturn, getChalk } from './chalk.js';
|
|
2
|
+
export { FormatLogMessageOptions, formatLogMessage, getLogFn, getStopwatch, writeDebug, writeError, writeFatal, writeInfo, writeSuccess, writeSystem, writeTrace, writeWarning } from './console.js';
|
|
3
|
+
export { getLogLevel, getLogLevelLabel, isVerbose } from './get-log-level.js';
|
|
4
|
+
import '../types-DGWqy1xb.js';
|
|
5
|
+
import 'zod';
|
|
6
|
+
import '../types.js';
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-SJO5XZQA.js');
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
var _chunkOXK45X3Ljs = require('../chunk-OXK45X3L.js');
|
|
15
|
+
require('../chunk-N32EGEJB.js');
|
|
16
|
+
require('../chunk-6SJLAEJ3.js');
|
|
17
|
+
require('../chunk-N4BRCEYB.js');
|
|
18
|
+
require('../chunk-GIZ23UUE.js');
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
var _chunkWXOSG64Cjs = require('../chunk-WXOSG64C.js');
|
|
24
|
+
require('../chunk-H6XXDZ7A.js');
|
|
25
|
+
require('../chunk-6WPG3DXV.js');
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
var _chunkBS5OC5E6js = require('../chunk-BS5OC5E6.js');
|
|
29
|
+
require('../chunk-XJEQHMOE.js');
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
exports.formatLogMessage = _chunkOXK45X3Ljs.formatLogMessage; exports.getChalk = _chunkBS5OC5E6js.getChalk; exports.getLogFn = _chunkOXK45X3Ljs.getLogFn; exports.getLogLevel = _chunkWXOSG64Cjs.getLogLevel; exports.getLogLevelLabel = _chunkWXOSG64Cjs.getLogLevelLabel; exports.getStopwatch = _chunkOXK45X3Ljs.getStopwatch; exports.isVerbose = _chunkWXOSG64Cjs.isVerbose; exports.writeDebug = _chunkOXK45X3Ljs.writeDebug; exports.writeError = _chunkOXK45X3Ljs.writeError; exports.writeFatal = _chunkOXK45X3Ljs.writeFatal; exports.writeInfo = _chunkOXK45X3Ljs.writeInfo; exports.writeSuccess = _chunkOXK45X3Ljs.writeSuccess; exports.writeSystem = _chunkOXK45X3Ljs.writeSystem; exports.writeTrace = _chunkOXK45X3Ljs.writeTrace; exports.writeWarning = _chunkOXK45X3Ljs.writeWarning;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import "../chunk-X6VIYUJR.mjs";
|
|
2
|
+
import {
|
|
3
|
+
formatLogMessage,
|
|
4
|
+
getLogFn,
|
|
5
|
+
getStopwatch,
|
|
6
|
+
writeDebug,
|
|
7
|
+
writeError,
|
|
8
|
+
writeFatal,
|
|
9
|
+
writeInfo,
|
|
10
|
+
writeSuccess,
|
|
11
|
+
writeSystem,
|
|
12
|
+
writeTrace,
|
|
13
|
+
writeWarning
|
|
14
|
+
} from "../chunk-66ACWURQ.mjs";
|
|
15
|
+
import "../chunk-PVPSTJNJ.mjs";
|
|
16
|
+
import "../chunk-TEKFJAJJ.mjs";
|
|
17
|
+
import "../chunk-TTCXDK6S.mjs";
|
|
18
|
+
import "../chunk-RAWSXKTG.mjs";
|
|
19
|
+
import {
|
|
20
|
+
getLogLevel,
|
|
21
|
+
getLogLevelLabel,
|
|
22
|
+
isVerbose
|
|
23
|
+
} from "../chunk-UCUOC6LA.mjs";
|
|
24
|
+
import "../chunk-GOQAHXJF.mjs";
|
|
25
|
+
import "../chunk-VQLOUFMG.mjs";
|
|
26
|
+
import {
|
|
27
|
+
getChalk
|
|
28
|
+
} from "../chunk-4IYEDNYJ.mjs";
|
|
29
|
+
import "../chunk-WRFJFYOU.mjs";
|
|
30
|
+
export {
|
|
31
|
+
formatLogMessage,
|
|
32
|
+
getChalk,
|
|
33
|
+
getLogFn,
|
|
34
|
+
getLogLevel,
|
|
35
|
+
getLogLevelLabel,
|
|
36
|
+
getStopwatch,
|
|
37
|
+
isVerbose,
|
|
38
|
+
writeDebug,
|
|
39
|
+
writeError,
|
|
40
|
+
writeFatal,
|
|
41
|
+
writeInfo,
|
|
42
|
+
writeSuccess,
|
|
43
|
+
writeSystem,
|
|
44
|
+
writeTrace,
|
|
45
|
+
writeWarning
|
|
46
|
+
};
|
package/dist/utilities/index.js
CHANGED
|
@@ -3,31 +3,30 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkZVXEYJQOjs = require('../chunk-ZVXEYJQO.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
var _chunk7XY63NMEjs = require('../chunk-7XY63NME.js');
|
|
12
|
-
require('../chunk-T2X5W62C.js');
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
|
|
16
|
-
var _chunkN32EGEJBjs = require('../chunk-N32EGEJB.js');
|
|
17
|
-
require('../chunk-BS5OC5E6.js');
|
|
18
15
|
|
|
16
|
+
var _chunkPEHVR33Ijs = require('../chunk-PEHVR33I.js');
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
|
|
22
|
-
var
|
|
20
|
+
var _chunk5QZ7AV2Jjs = require('../chunk-5QZ7AV2J.js');
|
|
21
|
+
require('../chunk-OXK45X3L.js');
|
|
23
22
|
|
|
24
23
|
|
|
25
24
|
|
|
26
|
-
var
|
|
25
|
+
var _chunkN32EGEJBjs = require('../chunk-N32EGEJB.js');
|
|
27
26
|
|
|
28
27
|
|
|
29
28
|
|
|
30
|
-
var
|
|
29
|
+
var _chunk6SJLAEJ3js = require('../chunk-6SJLAEJ3.js');
|
|
31
30
|
require('../chunk-N4BRCEYB.js');
|
|
32
31
|
require('../chunk-GIZ23UUE.js');
|
|
33
32
|
require('../chunk-WXOSG64C.js');
|
|
@@ -36,6 +35,7 @@ require('../chunk-WXOSG64C.js');
|
|
|
36
35
|
|
|
37
36
|
var _chunkH6XXDZ7Ajs = require('../chunk-H6XXDZ7A.js');
|
|
38
37
|
require('../chunk-6WPG3DXV.js');
|
|
38
|
+
require('../chunk-BS5OC5E6.js');
|
|
39
39
|
require('../chunk-XJEQHMOE.js');
|
|
40
40
|
|
|
41
41
|
|
|
@@ -55,4 +55,4 @@ require('../chunk-XJEQHMOE.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
exports.DEFAULT_COLOR_CONFIG = _chunkN32EGEJBjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk7XY63NMEjs.LARGE_BUFFER; exports.applyWorkspaceBaseTokens = _chunkPEHVR33Ijs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkPEHVR33Ijs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkPEHVR33Ijs.applyWorkspaceTokens; exports.correctPaths = _chunkH6XXDZ7Ajs.correctPaths; exports.exitWithError =
|
|
58
|
+
exports.DEFAULT_COLOR_CONFIG = _chunkN32EGEJBjs.DEFAULT_COLOR_CONFIG; exports.LARGE_BUFFER = _chunk7XY63NMEjs.LARGE_BUFFER; exports.applyWorkspaceBaseTokens = _chunkPEHVR33Ijs.applyWorkspaceBaseTokens; exports.applyWorkspaceProjectTokens = _chunkPEHVR33Ijs.applyWorkspaceProjectTokens; exports.applyWorkspaceTokens = _chunkPEHVR33Ijs.applyWorkspaceTokens; exports.correctPaths = _chunkH6XXDZ7Ajs.correctPaths; exports.exitWithError = _chunkZVXEYJQOjs.exitWithError; exports.exitWithSuccess = _chunkZVXEYJQOjs.exitWithSuccess; exports.findFileName = _chunk5QZ7AV2Jjs.findFileName; exports.findWorkspaceRoot = _chunk6SJLAEJ3js.findWorkspaceRoot; exports.findWorkspaceRootSafe = _chunk6SJLAEJ3js.findWorkspaceRootSafe; exports.getDefaultConfig = _chunkN32EGEJBjs.getDefaultConfig; exports.handleProcess = _chunkZVXEYJQOjs.handleProcess; exports.joinPaths = _chunkH6XXDZ7Ajs.joinPaths; exports.removeExtension = _chunk5QZ7AV2Jjs.removeExtension; exports.run = _chunk7XY63NMEjs.run; exports.runAsync = _chunk7XY63NMEjs.runAsync;
|
package/dist/utilities/index.mjs
CHANGED
|
@@ -3,31 +3,30 @@ import {
|
|
|
3
3
|
exitWithError,
|
|
4
4
|
exitWithSuccess,
|
|
5
5
|
handleProcess
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-64RYHF5D.mjs";
|
|
7
7
|
import {
|
|
8
8
|
LARGE_BUFFER,
|
|
9
9
|
run,
|
|
10
10
|
runAsync
|
|
11
11
|
} from "../chunk-XXHENMLT.mjs";
|
|
12
|
-
import "../chunk-RHGJNRVE.mjs";
|
|
13
|
-
import {
|
|
14
|
-
DEFAULT_COLOR_CONFIG,
|
|
15
|
-
getDefaultConfig
|
|
16
|
-
} from "../chunk-PVPSTJNJ.mjs";
|
|
17
|
-
import "../chunk-4IYEDNYJ.mjs";
|
|
18
12
|
import {
|
|
19
13
|
applyWorkspaceBaseTokens,
|
|
20
14
|
applyWorkspaceProjectTokens,
|
|
21
15
|
applyWorkspaceTokens
|
|
22
16
|
} from "../chunk-XLMGW4ZW.mjs";
|
|
23
|
-
import {
|
|
24
|
-
findWorkspaceRoot,
|
|
25
|
-
findWorkspaceRootSafe
|
|
26
|
-
} from "../chunk-TEKFJAJJ.mjs";
|
|
27
17
|
import {
|
|
28
18
|
findFileName,
|
|
29
19
|
removeExtension
|
|
30
20
|
} from "../chunk-FW22KPOW.mjs";
|
|
21
|
+
import "../chunk-66ACWURQ.mjs";
|
|
22
|
+
import {
|
|
23
|
+
DEFAULT_COLOR_CONFIG,
|
|
24
|
+
getDefaultConfig
|
|
25
|
+
} from "../chunk-PVPSTJNJ.mjs";
|
|
26
|
+
import {
|
|
27
|
+
findWorkspaceRoot,
|
|
28
|
+
findWorkspaceRootSafe
|
|
29
|
+
} from "../chunk-TEKFJAJJ.mjs";
|
|
31
30
|
import "../chunk-TTCXDK6S.mjs";
|
|
32
31
|
import "../chunk-RAWSXKTG.mjs";
|
|
33
32
|
import "../chunk-UCUOC6LA.mjs";
|
|
@@ -36,6 +35,7 @@ import {
|
|
|
36
35
|
joinPaths
|
|
37
36
|
} from "../chunk-GOQAHXJF.mjs";
|
|
38
37
|
import "../chunk-VQLOUFMG.mjs";
|
|
38
|
+
import "../chunk-4IYEDNYJ.mjs";
|
|
39
39
|
import "../chunk-WRFJFYOU.mjs";
|
|
40
40
|
export {
|
|
41
41
|
DEFAULT_COLOR_CONFIG,
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../chunk-
|
|
5
|
+
var _chunkZVXEYJQOjs = require('../chunk-ZVXEYJQO.js');
|
|
6
|
+
require('../chunk-OXK45X3L.js');
|
|
7
7
|
require('../chunk-N32EGEJB.js');
|
|
8
|
-
require('../chunk-BS5OC5E6.js');
|
|
9
8
|
require('../chunk-6SJLAEJ3.js');
|
|
10
9
|
require('../chunk-N4BRCEYB.js');
|
|
11
10
|
require('../chunk-GIZ23UUE.js');
|
|
12
11
|
require('../chunk-WXOSG64C.js');
|
|
13
12
|
require('../chunk-H6XXDZ7A.js');
|
|
14
13
|
require('../chunk-6WPG3DXV.js');
|
|
14
|
+
require('../chunk-BS5OC5E6.js');
|
|
15
15
|
require('../chunk-XJEQHMOE.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
exports.exitWithError =
|
|
20
|
+
exports.exitWithError = _chunkZVXEYJQOjs.exitWithError; exports.exitWithSuccess = _chunkZVXEYJQOjs.exitWithSuccess; exports.handleProcess = _chunkZVXEYJQOjs.handleProcess;
|
|
@@ -2,16 +2,16 @@ import {
|
|
|
2
2
|
exitWithError,
|
|
3
3
|
exitWithSuccess,
|
|
4
4
|
handleProcess
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-64RYHF5D.mjs";
|
|
6
|
+
import "../chunk-66ACWURQ.mjs";
|
|
7
7
|
import "../chunk-PVPSTJNJ.mjs";
|
|
8
|
-
import "../chunk-4IYEDNYJ.mjs";
|
|
9
8
|
import "../chunk-TEKFJAJJ.mjs";
|
|
10
9
|
import "../chunk-TTCXDK6S.mjs";
|
|
11
10
|
import "../chunk-RAWSXKTG.mjs";
|
|
12
11
|
import "../chunk-UCUOC6LA.mjs";
|
|
13
12
|
import "../chunk-GOQAHXJF.mjs";
|
|
14
13
|
import "../chunk-VQLOUFMG.mjs";
|
|
14
|
+
import "../chunk-4IYEDNYJ.mjs";
|
|
15
15
|
import "../chunk-WRFJFYOU.mjs";
|
|
16
16
|
export {
|
|
17
17
|
exitWithError,
|