@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorable-viz/fluid",
3
- "version": "0.7.60",
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
- "tidy": "./script/tidy.sh",
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
- "test-all": "./script/test-all.sh",
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",
@@ -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,13 +0,0 @@
1
- # https://editorconfig.org
2
- root = true
3
-
4
- [*]
5
- indent_style = space
6
- indent_size = 2
7
- end_of_line = lf
8
- charset = utf-8
9
- trim_trailing_whitespace = true
10
- insert_final_newline = true
11
-
12
- [*.md]
13
- trim_trailing_whitespace = false
@@ -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
- }
@@ -1,13 +0,0 @@
1
- .*
2
- !.gitignore
3
- !.github
4
- !.editorconfig
5
- !.eslintrc.json
6
-
7
- output
8
- generated-docs
9
- bower_components
10
-
11
- node_modules
12
- package-lock.json
13
- *.lock
@@ -1,13 +0,0 @@
1
- # https://editorconfig.org
2
- root = true
3
-
4
- [*]
5
- indent_style = space
6
- indent_size = 2
7
- end_of_line = lf
8
- charset = utf-8
9
- trim_trailing_whitespace = true
10
- insert_final_newline = true
11
-
12
- [*.md]
13
- trim_trailing_whitespace = false
@@ -1,9 +0,0 @@
1
- .*
2
- !.gitignore
3
- !.github
4
- !.editorconfig
5
- !.tidyrc.json
6
-
7
- output
8
- generated-docs
9
- bower_components
@@ -1,10 +0,0 @@
1
- {
2
- "importSort": "source",
3
- "importWrap": "source",
4
- "indent": 2,
5
- "operatorsFile": null,
6
- "ribbon": 1,
7
- "typeArrowPlacement": "first",
8
- "unicode": "never",
9
- "width": null
10
- }