@matter/cli-tool 0.16.0-alpha.0-20251003-dc6d5523d → 0.16.0-alpha.0-20251006-3fe1e7c57
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.
|
@@ -82,9 +82,9 @@ function listPaths(endpoint) {
|
|
|
82
82
|
}
|
|
83
83
|
paths.add(basename);
|
|
84
84
|
}
|
|
85
|
-
const
|
|
86
|
-
if (
|
|
87
|
-
for (const node of
|
|
85
|
+
const peers = endpoint.peers;
|
|
86
|
+
if (peers !== void 0) {
|
|
87
|
+
for (const node of peers) {
|
|
88
88
|
let basename = node.id;
|
|
89
89
|
if (paths.has(basename)) {
|
|
90
90
|
basename = `${NODE_PREFIX}${basename}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/cli-tool",
|
|
3
|
-
"version": "0.16.0-alpha.0-
|
|
3
|
+
"version": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
4
4
|
"description": "Command line tool for interacting with Matter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -41,20 +41,20 @@
|
|
|
41
41
|
"#*": "./src/*"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@matter/general": "0.16.0-alpha.0-
|
|
45
|
-
"@matter/model": "0.16.0-alpha.0-
|
|
46
|
-
"@matter/node": "0.16.0-alpha.0-
|
|
47
|
-
"@matter/protocol": "0.16.0-alpha.0-
|
|
48
|
-
"@matter/tools": "0.16.0-alpha.0-
|
|
49
|
-
"@matter/types": "0.16.0-alpha.0-
|
|
50
|
-
"@matter/nodejs": "0.16.0-alpha.0-
|
|
44
|
+
"@matter/general": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
45
|
+
"@matter/model": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
46
|
+
"@matter/node": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
47
|
+
"@matter/protocol": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
48
|
+
"@matter/tools": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
49
|
+
"@matter/types": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
50
|
+
"@matter/nodejs": "0.16.0-alpha.0-20251006-3fe1e7c57",
|
|
51
51
|
"@types/escodegen": "^0.0.10",
|
|
52
52
|
"acorn": "^8.15.0",
|
|
53
53
|
"ansi-colors": "^4.1.3",
|
|
54
54
|
"escodegen": "^2.1.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@matter/testing": "0.16.0-alpha.0-
|
|
57
|
+
"@matter/testing": "0.16.0-alpha.0-20251006-3fe1e7c57"
|
|
58
58
|
},
|
|
59
59
|
"files": [
|
|
60
60
|
"dist/**/*",
|
|
@@ -104,9 +104,9 @@ function listPaths(endpoint: Endpoint) {
|
|
|
104
104
|
paths.add(basename);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
const
|
|
108
|
-
if (
|
|
109
|
-
for (const node of
|
|
107
|
+
const peers = (endpoint as ServerNode).peers;
|
|
108
|
+
if (peers !== undefined) {
|
|
109
|
+
for (const node of peers) {
|
|
110
110
|
let basename = node.id;
|
|
111
111
|
if (paths.has(basename)) {
|
|
112
112
|
basename = `${NODE_PREFIX}${basename}`;
|