@explorable-viz/fluid 0.7.71 → 0.7.73

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.
@@ -28462,7 +28462,7 @@ var copyOptions = {
28462
28462
  encoding: Nothing,
28463
28463
  shell: Nothing
28464
28464
  };
28465
- var publish = (website) => (library) => exec2(library ? "./node_modules/@explorable-viz/fluid/script/bundle-website.sh -w " + website : "./script/bundle-website.sh -w " + website)(copyOptions)((v) => {
28465
+ var publish = (website) => (library) => exec2((library ? "./node_modules/@explorable-viz/fluid/script/bundle-website.sh -w " : "./script/bundle-website.sh -w ") + (library ? website + " -r" : website + ""))(copyOptions)((v) => {
28466
28466
  if (v.error.tag === "Just") {
28467
28467
  return log(showErrorImpl(v.error._1));
28468
28468
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorable-viz/fluid",
3
- "version": "0.7.71",
3
+ "version": "0.7.73",
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": {
@@ -11,8 +11,9 @@ while getopts "w:r:" opt; do
11
11
  done
12
12
 
13
13
  PREFIX_=${PREFIX:+$PREFIX/}
14
-
15
- WEBSITE_LISP_CASE=$(./$PREFIX/script/util/lisp-case.sh "$WEBSITE")
14
+ pwd
15
+ ls -la script/util/lisp-case.sh
16
+ WEBSITE_LISP_CASE=$(. "${PREFIX_}script/util/lisp-case.sh" "$WEBSITE")
16
17
  echo "$WEBSITE -> $WEBSITE_LISP_CASE"
17
18
  echo "Cleaning dist/$WEBSITE_LISP_CASE"
18
19
  . "${PREFIX_}script/util/clean.sh" $WEBSITE_LISP_CASE