@explorable-viz/fluid 0.7.60 → 0.7.62
Sign up to get free protection for your applications and to get access to all the features.
- package/.spago/node-process/v11.0.0/.eslintrc.json +29 -0
- package/.spago/node-process/v11.0.0/.gitignore +8 -0
- package/.spago/node-process/v11.1.0/.eslintrc.json +29 -0
- package/.spago/node-process/v11.1.0/.gitignore +8 -0
- package/.spago/node-process/v11.2.0/.eslintrc.json +29 -0
- package/.spago/node-process/v11.2.0/.gitignore +8 -0
- package/.spago/optparse/v6.0.0/.gitignore +8 -0
- package/.spago/optparse/v6.0.0/.npmrc +1 -0
- package/README.md +28 -9
- package/dist/fluid/fluid/.DS_Store +0 -0
- package/dist/fluid/fluid/example/linked-inputs/energyscatter.fld +1 -2
- package/dist/fluid/fluid/example/linked-inputs/mini-energyscatter.fld +1 -2
- package/dist/fluid/fluid/example/plot/non-renewables.fld +3 -4
- package/dist/fluid/fluid/example/slicing/linked-outputs/stacked-bar-scatter-plot.fld +1 -2
- package/dist/fluid/fluid/lib/convolution.fld +4 -3
- package/dist/fluid/fluid/lib/text-viz.fld +5 -5
- package/dist/fluid/shared/fluid.mjs +54 -50
- package/dist/fluid/shared/load-figure.js +192 -218
- package/package.json +5 -6
- package/script/bundle-website.sh +0 -1
- package/.spago/affjax-node/v1.0.0/.editorconfig +0 -13
- package/.spago/affjax-node/v1.0.0/.eslintrc.json +0 -30
- package/.spago/affjax-node/v1.0.0/.gitignore +0 -13
- package/.spago/pathy/v9.0.0/.editorconfig +0 -13
- package/.spago/pathy/v9.0.0/.gitignore +0 -9
- package/.spago/pathy/v9.0.0/.tidyrc.json +0 -10
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@explorable-viz/fluid",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.62",
|
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": {
|
@@ -25,23 +25,22 @@
|
|
25
25
|
"script/util/lisp-case.sh"
|
26
26
|
],
|
27
27
|
"scripts": {
|
28
|
-
"
|
28
|
+
"benchmark": "./script/benchmark.sh",
|
29
29
|
"build": "./script/build.sh",
|
30
30
|
"build-test": "./script/build-test.sh",
|
31
31
|
"bundle-fluid": "./script/bundle-fluid.sh",
|
32
32
|
"bundle-page": "./script/bundle-page.sh",
|
33
33
|
"bundle-website": "./script/bundle-website.sh",
|
34
34
|
"bundle-website-all": "./script/bundle-website-all.sh",
|
35
|
+
"npm-publish": "./script/npm-publish.sh",
|
35
36
|
"serve": "./script/serve.sh",
|
36
37
|
"test": "./script/test.sh",
|
38
|
+
"test-all": "./script/test-all.sh",
|
37
39
|
"test-browser": "./script/test.sh --browsers=Chrome --singleRun=false",
|
38
40
|
"test-page": "./script/test-page.sh",
|
39
41
|
"test-website": "./script/test-website.sh",
|
40
42
|
"test-website-all": "./script/test-website-all.sh",
|
41
|
-
"
|
42
|
-
"npm-publish": "./script/npm-publish.sh",
|
43
|
-
"fluid": "./script/fluid.sh",
|
44
|
-
"benchmark": "./script/benchmark.sh"
|
43
|
+
"tidy": "./script/tidy.sh"
|
45
44
|
},
|
46
45
|
"dependencies": {
|
47
46
|
"@codemirror/commands": "6.2.2",
|
package/script/bundle-website.sh
CHANGED
@@ -50,7 +50,6 @@ echo "Processing shared js files:"
|
|
50
50
|
cp -r "${PREFIX:+$PREFIX/}dist/fluid/shared" dist/$WEBSITE_LISP_CASE
|
51
51
|
cp -r fluid dist/$WEBSITE_LISP_CASE
|
52
52
|
|
53
|
-
|
54
53
|
if [[ -e "website/$SRC_PATH/test.mjs" ]]; then
|
55
54
|
cp website/$SRC_PATH/test.mjs dist/SRC_PATH_LISP_CASE/test.mjs
|
56
55
|
fi
|
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"env": { "browser": true },
|
3
|
-
"extends": "eslint:recommended",
|
4
|
-
"parserOptions": { "ecmaVersion": 6, "sourceType": "module" },
|
5
|
-
"rules": {
|
6
|
-
"block-scoped-var": "error",
|
7
|
-
"consistent-return": "error",
|
8
|
-
"eqeqeq": "error",
|
9
|
-
"guard-for-in": "error",
|
10
|
-
"no-bitwise": "error",
|
11
|
-
"no-caller": "error",
|
12
|
-
"no-constant-condition": ["error", { "checkLoops": false }],
|
13
|
-
"no-extra-parens": "off",
|
14
|
-
"no-extend-native": "error",
|
15
|
-
"no-loop-func": "error",
|
16
|
-
"no-new": "error",
|
17
|
-
"no-param-reassign": "error",
|
18
|
-
"no-return-assign": "error",
|
19
|
-
"no-sequences": "error",
|
20
|
-
"no-unused-expressions": "error",
|
21
|
-
"no-use-before-define": "error",
|
22
|
-
"no-undef": "error",
|
23
|
-
"no-eq-null": "error",
|
24
|
-
"radix": ["error", "always"],
|
25
|
-
"indent": ["error", 2, { "SwitchCase": 0 }],
|
26
|
-
"quotes": ["error", "double"],
|
27
|
-
"semi": ["error", "always"],
|
28
|
-
"strict": ["error", "global"]
|
29
|
-
}
|
30
|
-
}
|