Skip to content

Commit

Permalink
Update to latest fluid-submodule, add node-process
Browse files Browse the repository at this point in the history
Signed-off-by: Achintya Rao <[email protected]>
  • Loading branch information
RaoOfPhysics committed Sep 2, 2024
1 parent dd75cff commit 5664a24
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fluid-submodule
Submodule fluid-submodule updated 56 files
+1 −46 .github/workflows/build.yml
+67 −0 .github/workflows/deploy.yml
+7 −0 fluid.js
+1 −0 fluid/example/graphics/countryData.fld
+9 −0 fluid/example/linked-outputs/moving-average-data.fld
+30 −0 fluid/example/linked-outputs/moving-average.fld
+27 −1 fluid/example/text.fld
+35 −0 fluid/lib/moving-average.fld
+14 −0 fluid/lib/nombre.fld
+9 −4 fluid/lib/prelude.fld
+1 −1 karma.conf.bench.js
+1 −1 karma.conf.test.js
+27 −28 package.json
+ plots/recent.png
+8 −0 script/build-standalone-all.sh
+19 −0 script/build-standalone.sh
+7 −0 script/build.sh
+6 −0 script/clean.sh
+10 −0 script/copy-static.sh
+1 −1 script/delete-workflow-runs.sh
+0 −23 script/publish.sh
+4 −0 script/serve.sh
+6 −0 script/test-puppeteer.sh
+4 −0 script/test.sh
+4 −0 script/tidy.sh
+1 −0 spago.dhall
+3 −13 src/App.purs
+1 −0 src/App/Util/Selector.purs
+65 −74 src/App/View/LineChart.js
+191 −35 src/App/View/LineChart.purs
+28 −13 src/App/View/LinkedText.js
+12 −24 src/App/View/LinkedText.purs
+0 −1 src/App/View/ScatterPlot.js
+5 −4 src/App/View/ScatterPlot.purs
+6 −2 src/Bind.purs
+13 −0 src/Fluid.purs
+1 −1 src/Module.purs
+0 −5 src/Primitive/Defs.purs
+0 −3 src/Publish/README.md
+1 −1 src/Standalone/Convolution.purs
+1 −1 src/Standalone/ConvolutionWrapped.purs
+1 −1 src/Standalone/EnergyScatter.purs
+13 −0 src/Standalone/MovingAverage.purs
+3 −0 src/Standalone/README.md
+1 −1 src/Standalone/Renewables.purs
+1 −1 src/Standalone/RenewablesLinked.purs
+23 −0 src/Standalone/TextViz.purs
+10 −3 src/Util.purs
+14 −6 test/Puppeteer.purs
+13 −0 test/Specs/LinkedOutputs.purs
+6 −10 test/Test.purs
+3 −0 test/Util.purs
+1 −1 web/css/styles.css
+7 −8 web/css/view-styles.css
+2 −21 web/index.html
+32 −29 yarn.lock
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"@codemirror/state": "6.4.1",
"@codemirror/view": "6.32.0",
"benchmark": "^2.1.4",
"d3": "^7.9.0"
"d3": "^7.9.0",
"node-process": "^1.0.1"
},
"devDependencies": {
"esbuild": "^0.15.1",
Expand Down
1 change: 1 addition & 0 deletions spago.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ to generate this file without the comments in this block.
, "lists"
, "maybe"
, "newtype"
, "node-process"
, "nonempty"
, "numbers"
, "ordered-collections"
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,11 @@ negotiator@^0.6.2, negotiator@^0.6.3:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==

node-process@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/node-process/-/node-process-1.0.1.tgz#50c59218771bca1159fb49aea00a1e277fb28975"
integrity sha512-XsyyLcJiMecF9AKVL3Ojd+7ViJ0Y23zigEpzgXQgos76wVqmgSkOQ6kizxQ3EFYKnD4vswEt8UjbCl4hVO1r9g==

npm-run-path@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5"
Expand Down

0 comments on commit 5664a24

Please sign in to comment.