@matterbridge/utils 3.6.0 → 3.6.1-dev-20260309-6341dee
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/commandLine.js +1 -1
- package/dist/export.d.ts +2 -2
- package/dist/export.js +2 -2
- package/package.json +74 -2
- /package/dist/{npmRoot.d.ts → npmPrefix.d.ts} +0 -0
- /package/dist/{npmRoot.js → npmPrefix.js} +0 -0
- /package/dist/{isValid.d.ts → validate.d.ts} +0 -0
- /package/dist/{isValid.js → validate.js} +0 -0
package/dist/commandLine.js
CHANGED
package/dist/export.d.ts
CHANGED
|
@@ -10,9 +10,9 @@ export * from './format.js';
|
|
|
10
10
|
export * from './githubVersion.js';
|
|
11
11
|
export * from './hex.js';
|
|
12
12
|
export * from './inspector.js';
|
|
13
|
-
export * from './isValid.js';
|
|
14
13
|
export * from './network.js';
|
|
15
|
-
export * from './
|
|
14
|
+
export * from './npmPrefix.js';
|
|
16
15
|
export * from './npmVersion.js';
|
|
17
16
|
export * from './tracker.js';
|
|
17
|
+
export * from './validate.js';
|
|
18
18
|
export * from './wait.js';
|
package/dist/export.js
CHANGED
|
@@ -10,9 +10,9 @@ export * from './format.js';
|
|
|
10
10
|
export * from './githubVersion.js';
|
|
11
11
|
export * from './hex.js';
|
|
12
12
|
export * from './inspector.js';
|
|
13
|
-
export * from './isValid.js';
|
|
14
13
|
export * from './network.js';
|
|
15
|
-
export * from './
|
|
14
|
+
export * from './npmPrefix.js';
|
|
16
15
|
export * from './npmVersion.js';
|
|
17
16
|
export * from './tracker.js';
|
|
17
|
+
export * from './validate.js';
|
|
18
18
|
export * from './wait.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matterbridge/utils",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.1-dev-20260309-6341dee",
|
|
4
4
|
"description": "Matterbridge utils library",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"homepage": "https://matterbridge.io/",
|
|
@@ -49,6 +49,78 @@
|
|
|
49
49
|
".": {
|
|
50
50
|
"types": "./dist/export.d.ts",
|
|
51
51
|
"import": "./dist/export.js"
|
|
52
|
+
},
|
|
53
|
+
"./cli": {
|
|
54
|
+
"types": "./dist/commandLine.d.ts",
|
|
55
|
+
"import": "./dist/commandLine.js"
|
|
56
|
+
},
|
|
57
|
+
"./validate": {
|
|
58
|
+
"types": "./dist/validate.d.ts",
|
|
59
|
+
"import": "./dist/validate.js"
|
|
60
|
+
},
|
|
61
|
+
"./format": {
|
|
62
|
+
"types": "./dist/format.d.ts",
|
|
63
|
+
"import": "./dist/format.js"
|
|
64
|
+
},
|
|
65
|
+
"./error": {
|
|
66
|
+
"types": "./dist/error.d.ts",
|
|
67
|
+
"import": "./dist/error.js"
|
|
68
|
+
},
|
|
69
|
+
"./inspector": {
|
|
70
|
+
"types": "./dist/inspector.d.ts",
|
|
71
|
+
"import": "./dist/inspector.js"
|
|
72
|
+
},
|
|
73
|
+
"./tracker": {
|
|
74
|
+
"types": "./dist/tracker.d.ts",
|
|
75
|
+
"import": "./dist/tracker.js"
|
|
76
|
+
},
|
|
77
|
+
"./wait": {
|
|
78
|
+
"types": "./dist/wait.d.ts",
|
|
79
|
+
"import": "./dist/wait.js"
|
|
80
|
+
},
|
|
81
|
+
"./npm-version": {
|
|
82
|
+
"types": "./dist/npmVersion.d.ts",
|
|
83
|
+
"import": "./dist/npmVersion.js"
|
|
84
|
+
},
|
|
85
|
+
"./npm-prefix": {
|
|
86
|
+
"types": "./dist/npmPrefix.d.ts",
|
|
87
|
+
"import": "./dist/npmPrefix.js"
|
|
88
|
+
},
|
|
89
|
+
"./network": {
|
|
90
|
+
"types": "./dist/network.d.ts",
|
|
91
|
+
"import": "./dist/network.js"
|
|
92
|
+
},
|
|
93
|
+
"./hex": {
|
|
94
|
+
"types": "./dist/hex.d.ts",
|
|
95
|
+
"import": "./dist/hex.js"
|
|
96
|
+
},
|
|
97
|
+
"./github-version": {
|
|
98
|
+
"types": "./dist/githubVersion.d.ts",
|
|
99
|
+
"import": "./dist/githubVersion.js"
|
|
100
|
+
},
|
|
101
|
+
"./deep-copy": {
|
|
102
|
+
"types": "./dist/deepCopy.d.ts",
|
|
103
|
+
"import": "./dist/deepCopy.js"
|
|
104
|
+
},
|
|
105
|
+
"./deep-equal": {
|
|
106
|
+
"types": "./dist/deepEqual.d.ts",
|
|
107
|
+
"import": "./dist/deepEqual.js"
|
|
108
|
+
},
|
|
109
|
+
"./copy-dir": {
|
|
110
|
+
"types": "./dist/copyDirectory.d.ts",
|
|
111
|
+
"import": "./dist/copyDirectory.js"
|
|
112
|
+
},
|
|
113
|
+
"./create-dir": {
|
|
114
|
+
"types": "./dist/createDirectory.d.ts",
|
|
115
|
+
"import": "./dist/createDirectory.js"
|
|
116
|
+
},
|
|
117
|
+
"./zip": {
|
|
118
|
+
"types": "./dist/createZip.d.ts",
|
|
119
|
+
"import": "./dist/createZip.js"
|
|
120
|
+
},
|
|
121
|
+
"./color-utils": {
|
|
122
|
+
"types": "./dist/colorUtils.d.ts",
|
|
123
|
+
"import": "./dist/colorUtils.js"
|
|
52
124
|
}
|
|
53
125
|
},
|
|
54
126
|
"engines": {
|
|
@@ -61,7 +133,7 @@
|
|
|
61
133
|
"CHANGELOG.md"
|
|
62
134
|
],
|
|
63
135
|
"dependencies": {
|
|
64
|
-
"@matterbridge/jest-utils": "3.6.
|
|
136
|
+
"@matterbridge/jest-utils": "3.6.1-dev-20260309-6341dee",
|
|
65
137
|
"node-ansi-logger": "3.2.0"
|
|
66
138
|
}
|
|
67
139
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|