@explorable-viz/fluid 0.7.45 → 0.7.46

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,7 +20,7 @@ const server = app.listen(8080, function() {
20
20
  module = root + '/test.mjs';
21
21
  }
22
22
  console.log('Loading Puppeteer test module:', module);
23
- import( module ).then(({ main }) => {
23
+ import(module).then(({ main }) => {
24
24
  main().then(serverDown);
25
25
  }).catch(err => {
26
26
  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.45",
3
+ "version": "0.7.46",
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": {
@@ -46,8 +46,8 @@ for CHILD in "${TO_COPY[@]}"; do
46
46
  cp -rL "$CHILD" dist/$WEBSITE_LISP_CASE
47
47
  done
48
48
 
49
- echo "Processing load-figure.js:"
49
+ echo "Processing shared js files:"
50
50
  cp "${PREFIX:+$PREFIX/}dist/fluid/load-figure.js" dist/$WEBSITE_LISP_CASE/shared
51
-
51
+ cp "${PREFIX:+$PREFIX/}dist/fluid/webtest-lib.js" dist/$WEBSITE_LISP_CASE/shared
52
52
  cp -r fluid dist/$WEBSITE_LISP_CASE
53
53
  echo "Bundled website $WEBSITE"
File without changes