@explorable-viz/fluid 0.7.86 → 0.7.87
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/fluid/shared/fluid.mjs +5809 -5533
- package/dist/fluid/shared/load-figure.js +838 -538
- package/dist/fluid/shared/webtest-lib.js +2 -2
- package/package.json +1 -1
- package/script/bundle-website.sh +2 -2
@@ -56243,14 +56243,14 @@ var require_ip = __commonJS({
|
|
56243
56243
|
const interfaces = os_1.default.networkInterfaces();
|
56244
56244
|
const family = normalizeFamily();
|
56245
56245
|
const all3 = Object.values(interfaces).map((addrs = []) => {
|
56246
|
-
const
|
56246
|
+
const addresses2 = addrs.filter((details) => {
|
56247
56247
|
const detailsFamily = normalizeFamily(details.family);
|
56248
56248
|
if (detailsFamily !== family || exports.ip.isLoopback(details.address)) {
|
56249
56249
|
return false;
|
56250
56250
|
}
|
56251
56251
|
return true;
|
56252
56252
|
});
|
56253
|
-
return
|
56253
|
+
return addresses2.length ? addresses2[0].address : void 0;
|
56254
56254
|
}).filter(Boolean);
|
56255
56255
|
return !all3.length ? exports.ip.loopback(family) : all3[0];
|
56256
56256
|
},
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@explorable-viz/fluid",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.87",
|
4
4
|
"description": "Fluid is an experimental programming language which integrates a bidirectional dynamic analysis to connect outputs to data sources in a fine-grained way. Fluid is implemented in PureScript and runs in the browser.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
package/script/bundle-website.sh
CHANGED