@graffy/common 0.15.18 → 0.15.19
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/index.cjs +3 -1
- package/index.mjs +3 -1
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -1209,7 +1209,9 @@ function decorate(rootGraph, rootQuery) {
|
|
|
1209
1209
|
}
|
|
1210
1210
|
}
|
|
1211
1211
|
if (plumGraph[REF]) {
|
|
1212
|
-
Object.defineProperty(graph, "$ref",
|
|
1212
|
+
Object.defineProperty(graph, "$ref", {
|
|
1213
|
+
value: decode$1(plumGraph[REF])
|
|
1214
|
+
});
|
|
1213
1215
|
}
|
|
1214
1216
|
return graph;
|
|
1215
1217
|
}
|
package/index.mjs
CHANGED
|
@@ -1201,7 +1201,9 @@ function decorate(rootGraph, rootQuery) {
|
|
|
1201
1201
|
}
|
|
1202
1202
|
}
|
|
1203
1203
|
if (plumGraph[REF]) {
|
|
1204
|
-
Object.defineProperty(graph, "$ref",
|
|
1204
|
+
Object.defineProperty(graph, "$ref", {
|
|
1205
|
+
value: decode$1(plumGraph[REF])
|
|
1206
|
+
});
|
|
1205
1207
|
}
|
|
1206
1208
|
return graph;
|
|
1207
1209
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graffy/common",
|
|
3
3
|
"description": "Common libraries that used by various Graffy modules.",
|
|
4
4
|
"author": "aravind (https://github.com/aravindet)",
|
|
5
|
-
"version": "0.15.
|
|
5
|
+
"version": "0.15.19",
|
|
6
6
|
"main": "./index.cjs",
|
|
7
7
|
"exports": {
|
|
8
8
|
"import": "./index.mjs",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"lodash": "^4.17.19",
|
|
20
20
|
"nanoid": "^3.2.0",
|
|
21
21
|
"merge-async-iterators": "^0.2.1",
|
|
22
|
-
"@graffy/stream": "0.15.
|
|
22
|
+
"@graffy/stream": "0.15.19"
|
|
23
23
|
}
|
|
24
24
|
}
|