@storm-software/config-tools 1.130.1 → 1.130.3
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/README.md +1 -1
- 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/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -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 _chunkT2X5W62Cjs = require('../chunk-T2X5W62C.js');
|
|
14
|
+
require('../chunk-N32EGEJB.js');
|
|
15
|
+
require('../chunk-BS5OC5E6.js');
|
|
16
|
+
require('../chunk-6SJLAEJ3.js');
|
|
17
|
+
require('../chunk-N4BRCEYB.js');
|
|
18
|
+
require('../chunk-GIZ23UUE.js');
|
|
19
|
+
require('../chunk-WXOSG64C.js');
|
|
20
|
+
require('../chunk-H6XXDZ7A.js');
|
|
21
|
+
require('../chunk-6WPG3DXV.js');
|
|
22
|
+
require('../chunk-XJEQHMOE.js');
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
exports.formatLogMessage = _chunkT2X5W62Cjs.formatLogMessage; exports.getLogFn = _chunkT2X5W62Cjs.getLogFn; exports.getStopwatch = _chunkT2X5W62Cjs.getStopwatch; exports.writeDebug = _chunkT2X5W62Cjs.writeDebug; exports.writeError = _chunkT2X5W62Cjs.writeError; exports.writeFatal = _chunkT2X5W62Cjs.writeFatal; exports.writeInfo = _chunkT2X5W62Cjs.writeInfo; exports.writeSuccess = _chunkT2X5W62Cjs.writeSuccess; exports.writeSystem = _chunkT2X5W62Cjs.writeSystem; exports.writeTrace = _chunkT2X5W62Cjs.writeTrace; exports.writeWarning = _chunkT2X5W62Cjs.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-RHGJNRVE.mjs";
|
|
14
|
+
import "../chunk-PVPSTJNJ.mjs";
|
|
15
|
+
import "../chunk-4IYEDNYJ.mjs";
|
|
16
|
+
import "../chunk-TEKFJAJJ.mjs";
|
|
17
|
+
import "../chunk-TTCXDK6S.mjs";
|
|
18
|
+
import "../chunk-RAWSXKTG.mjs";
|
|
19
|
+
import "../chunk-UCUOC6LA.mjs";
|
|
20
|
+
import "../chunk-GOQAHXJF.mjs";
|
|
21
|
+
import "../chunk-VQLOUFMG.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 _chunkT2X5W62Cjs = require('../chunk-T2X5W62C.js');
|
|
15
|
+
require('../chunk-N32EGEJB.js');
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
var _chunkBS5OC5E6js = require('../chunk-BS5OC5E6.js');
|
|
19
|
+
require('../chunk-6SJLAEJ3.js');
|
|
20
|
+
require('../chunk-N4BRCEYB.js');
|
|
21
|
+
require('../chunk-GIZ23UUE.js');
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
var _chunkWXOSG64Cjs = require('../chunk-WXOSG64C.js');
|
|
27
|
+
require('../chunk-H6XXDZ7A.js');
|
|
28
|
+
require('../chunk-6WPG3DXV.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 = _chunkT2X5W62Cjs.formatLogMessage; exports.getChalk = _chunkBS5OC5E6js.getChalk; exports.getLogFn = _chunkT2X5W62Cjs.getLogFn; exports.getLogLevel = _chunkWXOSG64Cjs.getLogLevel; exports.getLogLevelLabel = _chunkWXOSG64Cjs.getLogLevelLabel; exports.getStopwatch = _chunkT2X5W62Cjs.getStopwatch; exports.isVerbose = _chunkWXOSG64Cjs.isVerbose; exports.writeDebug = _chunkT2X5W62Cjs.writeDebug; exports.writeError = _chunkT2X5W62Cjs.writeError; exports.writeFatal = _chunkT2X5W62Cjs.writeFatal; exports.writeInfo = _chunkT2X5W62Cjs.writeInfo; exports.writeSuccess = _chunkT2X5W62Cjs.writeSuccess; exports.writeSystem = _chunkT2X5W62Cjs.writeSystem; exports.writeTrace = _chunkT2X5W62Cjs.writeTrace; exports.writeWarning = _chunkT2X5W62Cjs.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-RHGJNRVE.mjs";
|
|
15
|
+
import "../chunk-PVPSTJNJ.mjs";
|
|
16
|
+
import {
|
|
17
|
+
getChalk
|
|
18
|
+
} from "../chunk-4IYEDNYJ.mjs";
|
|
19
|
+
import "../chunk-TEKFJAJJ.mjs";
|
|
20
|
+
import "../chunk-TTCXDK6S.mjs";
|
|
21
|
+
import "../chunk-RAWSXKTG.mjs";
|
|
22
|
+
import {
|
|
23
|
+
getLogLevel,
|
|
24
|
+
getLogLevelLabel,
|
|
25
|
+
isVerbose
|
|
26
|
+
} from "../chunk-UCUOC6LA.mjs";
|
|
27
|
+
import "../chunk-GOQAHXJF.mjs";
|
|
28
|
+
import "../chunk-VQLOUFMG.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/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@storm-software/config-tools","version":"1.130.
|
|
1
|
+
{"name":"@storm-software/config-tools","version":"1.130.3","description":"⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/config-tools"},"homepage":"https://stormsoftware.com","bugs":{"url":"https://stormsoftware.com/support","email":"support@stormsoftware.com"},"author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"contributors":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"}],"funding":{"type":"github","url":"https://github.com/sponsors/storm-software"},"license":"Apache-2.0","private":false,"main":"./dist/index.js","module":"./dist/index.mjs","exports":{"./package.json":"./package.json","./types":{"import":{"types":"./dist/types.d.mts","default":"./dist/types.mjs"},"require":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"default":{"types":"./dist/types.d.ts","default":"./dist/types.js"}},"./index":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.ts","default":"./dist/index.js"}},"./create-storm-config":{"import":{"types":"./dist/create-storm-config.d.mts","default":"./dist/create-storm-config.mjs"},"require":{"types":"./dist/create-storm-config.d.ts","default":"./dist/create-storm-config.js"},"default":{"types":"./dist/create-storm-config.d.ts","default":"./dist/create-storm-config.js"}},"./config-file":{"import":{"types":"./dist/config-file/index.d.mts","default":"./dist/config-file/index.mjs"},"require":{"types":"./dist/config-file/index.d.ts","default":"./dist/config-file/index.js"},"default":{"types":"./dist/config-file/index.d.ts","default":"./dist/config-file/index.js"}},"./config-file/*":{"import":{"types":"./dist/config-file/*.d.mts","default":"./dist/config-file/*.mjs"},"require":{"types":"./dist/config-file/*.d.ts","default":"./dist/config-file/*.js"},"default":{"types":"./dist/config-file/*.d.ts","default":"./dist/config-file/*.js"}},"./env":{"import":{"types":"./dist/env/index.d.mts","default":"./dist/env/index.mjs"},"require":{"types":"./dist/env/index.d.ts","default":"./dist/env/index.js"},"default":{"types":"./dist/env/index.d.ts","default":"./dist/env/index.js"}},"./env/*":{"import":{"types":"./dist/env/*.d.mts","default":"./dist/env/*.mjs"},"require":{"types":"./dist/env/*.d.ts","default":"./dist/env/*.js"},"default":{"types":"./dist/env/*.d.ts","default":"./dist/env/*.js"}},"./logger":{"import":{"types":"./dist/logger/index.d.mts","default":"./dist/logger/index.mjs"},"require":{"types":"./dist/logger/index.d.ts","default":"./dist/logger/index.js"},"default":{"types":"./dist/logger/index.d.ts","default":"./dist/logger/index.js"}},"./logger/*":{"import":{"types":"./dist/logger/*.d.mts","default":"./dist/logger/*.mjs"},"require":{"types":"./dist/logger/*.d.ts","default":"./dist/logger/*.js"},"default":{"types":"./dist/logger/*.d.ts","default":"./dist/logger/*.js"}},"./utilities":{"import":{"types":"./dist/utilities/index.d.mts","default":"./dist/utilities/index.mjs"},"require":{"types":"./dist/utilities/index.d.ts","default":"./dist/utilities/index.js"},"default":{"types":"./dist/utilities/index.d.ts","default":"./dist/utilities/index.js"}},"./utilities/*":{"import":{"types":"./dist/utilities/*.d.mts","default":"./dist/utilities/*.mjs"},"require":{"types":"./dist/utilities/*.d.ts","default":"./dist/utilities/*.js"},"default":{"types":"./dist/utilities/*.d.ts","default":"./dist/utilities/*.js"}}},"types":"./dist/index.d.ts","files":["dist/**/*"],"keywords":["storm-stack","storm-software","storm","stormstack","storm-ops","acidic","acidic-lang","acidic-model","cyclone-ui","nextjs","prisma","graphql","sullivanpj","monorepo"],"dependencies":{"zod":"^3.24.0"},"devDependencies":{"@types/node":"^22.10.2","c12":"^2.0.0-beta.2","chalk":"^4.1.2","defu":"6.1.4","tsup":"8.3.5"},"publishConfig":{"access":"public"},"sideEffects":false}
|