@explorable-viz/fluid 0.7.75 → 0.7.76

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorable-viz/fluid",
3
- "version": "0.7.75",
3
+ "version": "0.7.76",
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": {
@@ -33,6 +33,7 @@
33
33
  "bundle-page": "./script/bundle-page.sh",
34
34
  "bundle-website": "./script/bundle-website.sh",
35
35
  "bundle-website-all": "./script/bundle-website-all.sh",
36
+ "fluid": "node ./dist/fluid/shared/fluid.mjs",
36
37
  "npm-publish": "./script/npm-publish.sh",
37
38
  "serve": "./script/serve.sh",
38
39
  "test": "./script/test.sh",
@@ -48,14 +48,12 @@ for CHILD in "${TO_COPY[@]}"; do
48
48
  cp -rL "$CHILD" dist/$WEBSITE_LISP_CASE
49
49
  done
50
50
 
51
- echo "Processing shared js files:"
51
+ echo "Processing Fluid source files:"
52
52
  cp -r fluid dist/$WEBSITE_LISP_CASE
53
+ [ -d "website/$WEBSITE/fluid" ] && cp -r "website/$WEBSITE/fluid" dist/$WEBSITE_LISP_CASE
53
54
 
54
- # if [[ "$PREFIX" != "" ]]; then
55
- # cp -r "${PREFIX_}dist/fluid/fluid" dist/$WEBSITE_LISP_CASE
56
- # fi
55
+ echo "Processing shared JavaScript files:"
57
56
  cp -r "${PREFIX_}dist/fluid/shared" dist/$WEBSITE_LISP_CASE
58
- [ -d "website/$WEBSITE/fluid" ] && cp -r "website/$WEBSITE/fluid" dist/$WEBSITE_LISP_CASE
59
57
 
60
58
  if [[ -e "website/$SRC_PATH/test.mjs" ]]; then
61
59
  cp website/$SRC_PATH/test.mjs dist/SRC_PATH_LISP_CASE/test.mjs