@explorable-viz/fluid 0.7.42 → 0.7.43
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/script/bundle-website.sh +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@explorable-viz/fluid",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.43",
|
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": {
|
package/script/bundle-website.sh
CHANGED
@@ -14,7 +14,7 @@ WEBSITE_LISP_CASE=$(./$PREFIX/script/util/lisp-case.sh "$WEBSITE")
|
|
14
14
|
echo "$WEBSITE -> $WEBSITE_LISP_CASE"
|
15
15
|
mkdir -p "dist/$WEBSITE_LISP_CASE"
|
16
16
|
|
17
|
-
. script/bundle-page.sh $WEBSITE
|
17
|
+
. "${PREFIX:+$PREFIX/}script/bundle-page.sh" $WEBSITE
|
18
18
|
|
19
19
|
shopt -s nullglob
|
20
20
|
|
@@ -26,7 +26,7 @@ done | sort -u))
|
|
26
26
|
set -x
|
27
27
|
|
28
28
|
for PAGE in "${PAGES[@]}"; do
|
29
|
-
. script/bundle-page.sh $WEBSITE.$PAGE
|
29
|
+
. "${PREFIX:+$PREFIX/}script/bundle-page.sh" $WEBSITE.$PAGE
|
30
30
|
done
|
31
31
|
|
32
32
|
echo "Processing other static files:"
|