@explorable-viz/fluid 0.7.39 → 0.7.41

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,7 +14,11 @@ const server = app.listen(8080, function() {
14
14
 
15
15
  (async () => {
16
16
  try {
17
- const module = process.argv[2]
17
+ if (process.argv.length == 5 && process.argv[4] == "-l") {
18
+ module = __dirname + 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.39",
3
+ "version": "0.7.41",
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": {