@explorable-viz/fluid 0.7.35 → 0.7.37

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  const express = require('express');
2
3
  const serve = require('express-static');
3
4
  require('http-shutdown').extend();
@@ -15,7 +16,7 @@ const server = app.listen(8080, function() {
15
16
  try {
16
17
  const module = process.argv[2]
17
18
  console.log('Loading Puppeteer test module:', module);
18
- import(module).then(({ main }) => {
19
+ import( module ).then(({ main }) => {
19
20
  main().then(serverDown);
20
21
  }).catch(err => {
21
22
  console.error("Failed to load PureScript output:", err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorable-viz/fluid",
3
- "version": "0.7.35",
3
+ "version": "0.7.37",
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": {