@reliverse/relinka 1.3.7 → 1.3.8
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 +2 -1
- package/bin/{relinka-impl → core-impl}/deprecated/components/levels/levels.d.ts +13 -13
- package/bin/{relinka-impl → core-impl}/deprecated/components/modes/basic.d.ts +19 -19
- package/bin/{relinka-impl → core-impl}/deprecated/components/modes/browser.d.ts +19 -19
- package/bin/{relinka-impl → core-impl}/deprecated/components/modes/shared.d.ts +2 -2
- package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/logger.d.ts +5 -5
- package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/mod.d.ts +20 -20
- package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/relinka.d.ts +140 -141
- package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/relinka.test.d.ts +1 -1
- package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/basic.d.ts +11 -11
- package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/browser.d.ts +10 -10
- package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/fancy.d.ts +10 -10
- package/bin/{relinka-impl → core-impl}/deprecated/utils/box.d.ts +114 -114
- package/bin/{relinka-impl → core-impl}/deprecated/utils/deprecatedColors.d.ts +69 -69
- package/bin/{relinka-impl → core-impl}/deprecated/utils/error.d.ts +6 -6
- package/bin/{relinka-impl → core-impl}/deprecated/utils/format.d.ts +14 -14
- package/bin/{relinka-impl → core-impl}/deprecated/utils/log.d.ts +13 -13
- package/bin/{relinka-impl → core-impl}/deprecated/utils/stream.d.ts +14 -15
- package/bin/{relinka-impl → core-impl}/deprecated/utils/string.d.ts +50 -50
- package/bin/{relinka-impl → core-impl}/deprecated/utils/tree.d.ts +41 -41
- package/bin/{relinka-impl → core-impl}/impl-mod.d.ts +19 -19
- package/bin/{relinka-impl → core-impl}/impl-mod.js +4 -0
- package/bin/{relinka-types.d.ts → core-types.d.ts} +193 -194
- package/bin/main.d.ts +22 -22
- package/bin/main.js +18 -18
- package/package.json +3 -3
- /package/bin/{relinka-impl → core-impl}/deprecated/components/levels/levels.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/modes/basic.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/modes/browser.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/modes/shared.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/logger.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/mod.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/relinka.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/relinka.test.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/basic.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/browser.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/components/reporters/fancy.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/box.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/deprecatedColors.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/error.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/format.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/log.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/stream.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/string.js +0 -0
- /package/bin/{relinka-impl → core-impl}/deprecated/utils/tree.js +0 -0
- /package/bin/{relinka-types.js → core-types.js} +0 -0
package/bin/main.js
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
export {
|
|
2
2
|
LogLevelsDeprecated,
|
|
3
3
|
LogTypesDeprecated
|
|
4
|
-
} from "./
|
|
4
|
+
} from "./core-impl/deprecated/components/levels/levels.js";
|
|
5
5
|
export {
|
|
6
6
|
createRelinkaBaseDeprecated,
|
|
7
7
|
relinkaBasicDeprecated
|
|
8
|
-
} from "./
|
|
8
|
+
} from "./core-impl/deprecated/components/modes/basic.js";
|
|
9
9
|
export {
|
|
10
10
|
createRelinkaBrowserDeprecatedDeprecated,
|
|
11
11
|
relinkaBrowserDeprecated
|
|
12
|
-
} from "./
|
|
13
|
-
export { relinkaDeprecated } from "./
|
|
12
|
+
} from "./core-impl/deprecated/components/modes/browser.js";
|
|
13
|
+
export { relinkaDeprecated } from "./core-impl/deprecated/components/relinka-deprecated/logger.js";
|
|
14
14
|
export {
|
|
15
15
|
createRelinkaSharedDeprecated,
|
|
16
16
|
relinkaInstanceDeprecated
|
|
17
|
-
} from "./
|
|
17
|
+
} from "./core-impl/deprecated/components/relinka-deprecated/mod.js";
|
|
18
18
|
export {
|
|
19
19
|
RelinkaInterface,
|
|
20
20
|
createRelinkaDeprecated
|
|
21
|
-
} from "./
|
|
22
|
-
export { BasicReporter } from "./
|
|
23
|
-
export { BrowserReporter } from "./
|
|
21
|
+
} from "./core-impl/deprecated/components/relinka-deprecated/relinka.js";
|
|
22
|
+
export { BasicReporter } from "./core-impl/deprecated/components/reporters/basic.js";
|
|
23
|
+
export { BrowserReporter } from "./core-impl/deprecated/components/reporters/browser.js";
|
|
24
24
|
export {
|
|
25
25
|
TYPE_COLOR_MAP,
|
|
26
26
|
LEVEL_COLOR_MAP,
|
|
27
27
|
FancyReporter
|
|
28
|
-
} from "./
|
|
29
|
-
export { box } from "./
|
|
28
|
+
} from "./core-impl/deprecated/components/reporters/fancy.js";
|
|
29
|
+
export { box } from "./core-impl/deprecated/utils/box.js";
|
|
30
30
|
export {
|
|
31
31
|
colors,
|
|
32
32
|
getColor,
|
|
33
33
|
colorize
|
|
34
|
-
} from "./
|
|
35
|
-
export { parseStack } from "./
|
|
34
|
+
} from "./core-impl/deprecated/utils/deprecatedColors.js";
|
|
35
|
+
export { parseStack } from "./core-impl/deprecated/utils/error.js";
|
|
36
36
|
export {
|
|
37
37
|
compileFormat,
|
|
38
38
|
formatString
|
|
39
|
-
} from "./
|
|
39
|
+
} from "./core-impl/deprecated/utils/format.js";
|
|
40
40
|
export {
|
|
41
41
|
isPlainObject,
|
|
42
42
|
isLogObj
|
|
43
|
-
} from "./
|
|
44
|
-
export { writeStream } from "./
|
|
43
|
+
} from "./core-impl/deprecated/utils/log.js";
|
|
44
|
+
export { writeStream } from "./core-impl/deprecated/utils/stream.js";
|
|
45
45
|
export {
|
|
46
46
|
stripAnsi,
|
|
47
47
|
centerAlign,
|
|
48
48
|
rightAlign,
|
|
49
49
|
leftAlign,
|
|
50
50
|
align
|
|
51
|
-
} from "./
|
|
52
|
-
export { formatTree } from "./
|
|
51
|
+
} from "./core-impl/deprecated/utils/string.js";
|
|
52
|
+
export { formatTree } from "./core-impl/deprecated/utils/tree.js";
|
|
53
53
|
export {
|
|
54
54
|
relinkaConfig,
|
|
55
55
|
relinka,
|
|
56
56
|
relinkaAsync,
|
|
57
57
|
defineConfig
|
|
58
|
-
} from "./
|
|
58
|
+
} from "./core-impl/impl-mod.js";
|
package/package.json
CHANGED
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"name": "@reliverse/relinka",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "1.3.
|
|
6
|
+
"version": "1.3.8",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@reliverse/relico": "^1.1.0",
|
|
9
9
|
"@reliverse/runtime": "^1.0.3",
|
|
10
|
-
"c12": "^3.0.
|
|
10
|
+
"c12": "^3.0.3",
|
|
11
11
|
"defu": "^6.1.4",
|
|
12
12
|
"fs-extra": "^11.3.0",
|
|
13
13
|
"pathe": "^2.0.3",
|
|
14
14
|
"printj": "^1.3.1",
|
|
15
|
-
"std-env": "^3.
|
|
15
|
+
"std-env": "^3.9.0",
|
|
16
16
|
"string-width": "^7.2.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/{relinka-impl → core-impl}/deprecated/components/relinka-deprecated/relinka.test.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|