@explorable-viz/fluid 0.7.38 → 0.7.40
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/fluid/puppeteer.js +5 -1
- package/package.json +1 -1
package/dist/fluid/puppeteer.js
CHANGED
@@ -14,7 +14,11 @@ const server = app.listen(8080, function() {
|
|
14
14
|
|
15
15
|
(async () => {
|
16
16
|
try {
|
17
|
-
|
17
|
+
if (process.argv.length == 5 && process.argv[4] == "-l") {
|
18
|
+
module = "../../../../../".concat(process.argv[2])
|
19
|
+
} else {
|
20
|
+
module = process.argv[2]
|
21
|
+
}
|
18
22
|
console.log('Loading Puppeteer test module:', module);
|
19
23
|
import( module ).then(({ main }) => {
|
20
24
|
main().then(serverDown);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@explorable-viz/fluid",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.40",
|
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": {
|