@explorable-viz/fluid 0.7.99 → 0.7.101

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.99",
3
+ "version": "0.7.101",
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": {
@@ -34,8 +34,9 @@
34
34
  "build-prod": "BUILD_ENV=prod ./script/build.sh",
35
35
  "build-test": "./script/build-test.sh",
36
36
  "bundle-fluid": "./script/bundle-fluid.sh",
37
- "bundle-serve": "sh -c './script/bundle-website.sh -w \"$@\" && ./script/serve.sh \"$1\"' _",
37
+ "bundle-serve": "sh -c './script/bundle-website.sh \"$@\" && ./script/serve.sh \"$1\"' _",
38
38
  "bundle-website": "./script/bundle-website.sh",
39
+ "bundle-website-all": "./script/bundle-website-all.sh",
39
40
  "fluid": "node ./dist/fluid/shared/fluid.mjs",
40
41
  "npm-publish": "./script/npm-publish.sh",
41
42
  "serve": "./script/serve.sh",
@@ -57,7 +58,7 @@
57
58
  "datetime": "^0.0.3",
58
59
  "express": "^4.19.2",
59
60
  "express-static": "^1.2.6",
60
- "http-serve": "^1.0.1",
61
+ "http-server": "^14.1.1",
61
62
  "http-shutdown": "^1.2.2",
62
63
  "node": "^22.11.0",
63
64
  "node-process": "^1.0.1",
@@ -28,7 +28,7 @@ echo "Processing other static files:"
28
28
  set +xu # try to remove +u
29
29
  TO_COPY=()
30
30
  shopt -s dotglob extglob
31
- for CHILD in website/$WEBSITE/!(.|..); do
31
+ for CHILD in ${PREFIX_}website/$WEBSITE/!(.|..); do
32
32
  BASENAME="$(basename "$CHILD")"
33
33
  if [[ "$BASENAME" =~ ^[a-z.] ]]; then
34
34
  TO_COPY+=("$CHILD")
@@ -3,4 +3,8 @@ set -xeu
3
3
 
4
4
  rm -rf website
5
5
  mkdir -p website
6
- cp -r node_modules/@explorable-viz/fluid/website/article website
6
+ cp -r node_modules/@explorable-viz/fluid/website/{article,css,font,shared} website
7
+
8
+ ln -s ../css website/article/css
9
+ ln -s ../font website/article/font
10
+ ln -s ../shared website/article/shared