@e-mc/module 0.11.3 → 0.11.5
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 +11 -7
- package/index.js +11 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## Interface
|
|
11
11
|
|
|
12
|
-
* [View Source](https://www.unpkg.com/@e-mc/types@0.11.
|
|
12
|
+
* [View Source](https://www.unpkg.com/@e-mc/types@0.11.5/lib/index.d.ts)
|
|
13
13
|
|
|
14
14
|
```typescript
|
|
15
15
|
import type { LogStatus } from "./squared";
|
|
@@ -225,13 +225,17 @@ interface ModuleConstructor {
|
|
|
225
225
|
getMemUsage(format: true): string;
|
|
226
226
|
getMemUsage(format?: boolean): number;
|
|
227
227
|
formatCpuMem(start: CpuUsage, all?: boolean): string;
|
|
228
|
+
/** @deprecated */
|
|
228
229
|
getPackageVersion(name: string | [string, string], startDir: string, baseDir?: string): string;
|
|
230
|
+
/** @deprecated */
|
|
229
231
|
getPackageVersion(name: string | [string, string], unstable?: boolean, startDir?: string, baseDir?: string): string;
|
|
230
232
|
checkSemVer(name: string | [string, string], options: CheckSemVerOptions): boolean;
|
|
231
|
-
checkSemVer(name: string | [string, string], min: number | string, max?: number | string, unstable?: boolean, startDir?: string): boolean;
|
|
232
233
|
checkSemVer(name: string | [string, string], min: number | string, max: number | string, options?: Omit<CheckSemVerOptions, "min" | "max" | "equals">): boolean;
|
|
234
|
+
/** @deprecated */
|
|
233
235
|
sanitizeCmd(value: string): string;
|
|
236
|
+
/** @deprecated */
|
|
234
237
|
sanitizeArgs(value: string, doubleQuote?: boolean): string;
|
|
238
|
+
/** @deprecated */
|
|
235
239
|
sanitizeArgs(values: string[], doubleQuote?: boolean): string[];
|
|
236
240
|
purgeMemory(percent: number, parent: boolean): Promise<number>;
|
|
237
241
|
purgeMemory(percent: number, limit: number, parent?: boolean): Promise<number>;
|
|
@@ -410,11 +414,11 @@ interface LoggerModule {
|
|
|
410
414
|
|
|
411
415
|
## References
|
|
412
416
|
|
|
413
|
-
- https://www.unpkg.com/@e-mc/types@0.11.
|
|
414
|
-
- https://www.unpkg.com/@e-mc/types@0.11.
|
|
415
|
-
- https://www.unpkg.com/@e-mc/types@0.11.
|
|
416
|
-
- https://www.unpkg.com/@e-mc/types@0.11.
|
|
417
|
-
- https://www.unpkg.com/@e-mc/types@0.11.
|
|
417
|
+
- https://www.unpkg.com/@e-mc/types@0.11.5/lib/core.d.ts
|
|
418
|
+
- https://www.unpkg.com/@e-mc/types@0.11.5/lib/logger.d.ts
|
|
419
|
+
- https://www.unpkg.com/@e-mc/types@0.11.5/lib/module.d.ts
|
|
420
|
+
- https://www.unpkg.com/@e-mc/types@0.11.5/lib/node.d.ts
|
|
421
|
+
- https://www.unpkg.com/@e-mc/types@0.11.5/lib/settings.d.ts
|
|
418
422
|
|
|
419
423
|
* https://www.npmjs.com/package/@types/node
|
|
420
424
|
|
package/index.js
CHANGED
|
@@ -941,10 +941,9 @@ function isPathUNC(value) {
|
|
|
941
941
|
value = value.toString();
|
|
942
942
|
return (VALUES["node.posix.strict"] && value.includes('/') ? /^\/\/[\w.-]+\/[\w-]+\$?\/[^\n]*?[^/]$/ : /^(?:\\\\|\/\/)[\w.-]+[\\/][\w-]+\$?[\\/][^\n]*?[^\\/]$/).test(value);
|
|
943
943
|
}
|
|
944
|
-
const
|
|
945
|
-
const formatLogMessage = (type, message, unit, ident) => isMeterUnit(type, ident) ? (unit + LOG_DIVIDER + message).trimEnd() : unit ? (message + (ident ? '' : ' ') + unit).trimStart() : message;
|
|
944
|
+
const formatLogMessage = (type, message, unit, ident) => !ident && (type & 256) ? (unit + LOG_DIVIDER + message).trimEnd() : unit ? (type & 256) && ident ? unit + LOG_DIVIDER + message : (message + (ident ? '' : ' ') + unit).trimStart() : message;
|
|
946
945
|
const hideAbort = (err) => err.name === 'AbortError' && SETTINGS.abort === false;
|
|
947
|
-
const asFile = (value) => typeof value === 'string' ? value.trim() : value instanceof URL && value.protocol === 'file:' ? (0, node_url_1.fileURLToPath)(value) : '';
|
|
946
|
+
const asFile = (value) => typeof value === 'string' ? PLATFORM_WIN32 ? value.trim() : value : value instanceof URL && value.protocol === 'file:' ? (0, node_url_1.fileURLToPath)(value) : '';
|
|
948
947
|
const wrapQuote = (value) => '"' + value.replaceAll('"', '\\"') + '"';
|
|
949
948
|
const isFunction = (value) => typeof value === 'function';
|
|
950
949
|
const isFileURL = (value) => /^file:\/\//i.test(value);
|
|
@@ -984,7 +983,7 @@ class Module extends EventEmitter {
|
|
|
984
983
|
this[_g] = null;
|
|
985
984
|
}
|
|
986
985
|
static get VERSION() {
|
|
987
|
-
return "0.11.
|
|
986
|
+
return "0.11.5";
|
|
988
987
|
}
|
|
989
988
|
static get LOG_TYPE() {
|
|
990
989
|
return types_1.LOG_TYPE;
|
|
@@ -1074,7 +1073,7 @@ class Module extends EventEmitter {
|
|
|
1074
1073
|
if (error && hideAbort(message)) {
|
|
1075
1074
|
return;
|
|
1076
1075
|
}
|
|
1077
|
-
if (options.type) {
|
|
1076
|
+
if (typeof options.type === 'number') {
|
|
1078
1077
|
type |= options.type;
|
|
1079
1078
|
}
|
|
1080
1079
|
const BROADCAST_OUT = VALUES["broadcast.out"];
|
|
@@ -1275,7 +1274,7 @@ class Module extends EventEmitter {
|
|
|
1275
1274
|
const logOptions = { maxLength: messageWidth ?? formatMessage.width, outLength: 0, messageTextWrap };
|
|
1276
1275
|
m = formatLogColumn(m, messageColor, messageBgColor, messageBold, messageUnitIndent ? format.meter.bgAltColor : undefined, logOptions);
|
|
1277
1276
|
if (u && messageTextWrap && messageTextWrap !== 'none' && LOG_MIN_WIDTH + logOptions.outLength + (0, node_util_1.stripVTControlCharacters)(unit).length + (messageUnitIndent ? 0 : 1) > PROCESS_STDOUT.columns) {
|
|
1278
|
-
if (
|
|
1277
|
+
if ((type & 256) && !messageUnitIndent) {
|
|
1279
1278
|
m = '';
|
|
1280
1279
|
if (LOG_MIN_WIDTH + (0, node_util_1.stripVTControlCharacters)(u).length > PROCESS_STDOUT.columns) {
|
|
1281
1280
|
u = '';
|
|
@@ -1559,7 +1558,7 @@ class Module extends EventEmitter {
|
|
|
1559
1558
|
filename = undefined;
|
|
1560
1559
|
}
|
|
1561
1560
|
if (typeof value === 'string') {
|
|
1562
|
-
let pathname = value.trim(), convert = true;
|
|
1561
|
+
let pathname = PLATFORM_WIN32 ? value.trim() : value, convert = true;
|
|
1563
1562
|
if (normalize) {
|
|
1564
1563
|
pathname = path.normalize(pathname);
|
|
1565
1564
|
convert = PLATFORM_WIN32;
|
|
@@ -1675,7 +1674,7 @@ class Module extends EventEmitter {
|
|
|
1675
1674
|
return false;
|
|
1676
1675
|
}
|
|
1677
1676
|
static resolveFile(value) {
|
|
1678
|
-
if (isFileURL(value = value instanceof URL ? value.toString() : value
|
|
1677
|
+
if (isFileURL(value = value instanceof URL ? value.toString() : value)) {
|
|
1679
1678
|
try {
|
|
1680
1679
|
return (0, node_url_1.fileURLToPath)(value);
|
|
1681
1680
|
}
|
|
@@ -1690,7 +1689,7 @@ class Module extends EventEmitter {
|
|
|
1690
1689
|
}
|
|
1691
1690
|
static resolvePath(value, base) {
|
|
1692
1691
|
try {
|
|
1693
|
-
if (this.isURL(value
|
|
1692
|
+
if (this.isURL(value)) {
|
|
1694
1693
|
return isFileURL(value) ? (0, node_url_1.fileURLToPath)(value) : new URL(value).href;
|
|
1695
1694
|
}
|
|
1696
1695
|
if (base instanceof URL || this.isURL(base)) {
|
|
@@ -1722,7 +1721,7 @@ class Module extends EventEmitter {
|
|
|
1722
1721
|
flags = flags ? 2 : 0;
|
|
1723
1722
|
}
|
|
1724
1723
|
if (typeof value === 'string') {
|
|
1725
|
-
let result = value.trim();
|
|
1724
|
+
let result = PLATFORM_WIN32 ? value.trim() : value;
|
|
1726
1725
|
result = flags & 1 ? path.resolve(result) : path.normalize(result);
|
|
1727
1726
|
if ((flags & 2) && result.length > 0) {
|
|
1728
1727
|
result = ensureDir(result);
|
|
@@ -3703,7 +3702,7 @@ class Module extends EventEmitter {
|
|
|
3703
3702
|
if (typeof value === 'boolean') {
|
|
3704
3703
|
queue = value;
|
|
3705
3704
|
}
|
|
3706
|
-
|
|
3705
|
+
value = type.value;
|
|
3707
3706
|
}
|
|
3708
3707
|
const output = Module.asString(value);
|
|
3709
3708
|
if (output) {
|
|
@@ -3731,7 +3730,7 @@ class Module extends EventEmitter {
|
|
|
3731
3730
|
from = timeStamp;
|
|
3732
3731
|
timeStamp = 0;
|
|
3733
3732
|
}
|
|
3734
|
-
else if ((0, types_1.
|
|
3733
|
+
else if ((0, types_1.isPlainObject)(timeStamp)) {
|
|
3735
3734
|
({ timeStamp, duration, from, source } = timeStamp);
|
|
3736
3735
|
}
|
|
3737
3736
|
const name = types_1.STATUS_TYPE[type] || types_1.STATUS_TYPE[type = 0];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e-mc/module",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
4
4
|
"description": "Module base class for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"license": "BSD-3-Clause",
|
|
21
21
|
"homepage": "https://github.com/anpham6/e-mc#readme",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@e-mc/types": "0.11.
|
|
23
|
+
"@e-mc/types": "0.11.5",
|
|
24
24
|
"chalk": "4.1.2",
|
|
25
25
|
"file-type": "^18.7.0",
|
|
26
26
|
"js-yaml": "^4.1.0",
|