Skip to content

Commit dac0326

Browse files
committed
Merge pull request #309 from GordonSmith/GRAPHVIZ_CLI
feat: Bump versions
2 parents 191cb8b + 93b90e2 commit dac0326

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2052
-1182
lines changed

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ steps.release.outputs.release_created }}
3131
uses: actions/setup-node@v4
3232
with:
33-
node-version: 20
33+
node-version: 22
3434
registry-url: "https://registry.npmjs.org"
3535
scope: "@hpcc-js"
3636

.github/workflows/test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-24.04, macos-13, macos-14]
16-
node: [20, 22]
16+
node: [22, 24]
1717

1818
runs-on: ${{ matrix.os }}
1919
name: Node ${{ matrix.os }}, node-${{ matrix.node }} sample

.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"name": "index-browser",
2828
"type": "msedge",
2929
"request": "launch",
30-
"url": "http://localhost:8000/index.html",
30+
"url": "http://localhost:8080/index.html",
3131
"webRoot": "${workspaceRoot}",
3232
"sourceMapPathOverrides": {
3333
"webpack:///./*": "${workspaceRoot}/*",
@@ -46,28 +46,28 @@
4646
"name": "http:///index.html",
4747
"type": "msedge",
4848
"request": "launch",
49-
"url": "http://localhost:8000/index.html",
49+
"url": "http://localhost:8080/index.html",
5050
"webRoot": "${workspaceRoot}"
5151
},
5252
{
5353
"name": "hw-graphviz.html",
5454
"type": "msedge",
5555
"request": "launch",
56-
"url": "http://localhost:8000/hw-graphviz.html",
56+
"url": "http://localhost:8080/hw-graphviz.html",
5757
"webRoot": "${workspaceRoot}"
5858
},
5959
{
6060
"name": "hw-zstd.html",
6161
"type": "msedge",
6262
"request": "launch",
63-
"url": "http://localhost:8000/hw-zstd.html",
63+
"url": "http://localhost:8080/hw-zstd.html",
6464
"webRoot": "${workspaceRoot}"
6565
},
6666
{
6767
"name": "hw-base91.html",
6868
"type": "msedge",
6969
"request": "launch",
70-
"url": "http://localhost:8000/hw-base91.html",
70+
"url": "http://localhost:8080/hw-base91.html",
7171
"webRoot": "${workspaceRoot}"
7272
},
7373
{
@@ -87,7 +87,7 @@
8787
"name": "test-browser",
8888
"type": "msedge",
8989
"request": "launch",
90-
"url": "http://localhost:8000/test.html",
90+
"url": "http://localhost:8080/test.html",
9191
"webRoot": "${workspaceRoot}",
9292
"sourceMapPathOverrides": {
9393
"webpack:///./*": "${workspaceRoot}/*",

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"cmake.cmakePath": "${workspaceFolder}/scripts/cmake.sh"
2+
"cmake.cmakePath": "${workspaceFolder}/scripts/cmake.sh",
3+
"vitest.maximumConfigs": 20,
4+
"vitest.configSearchPatternExclude": "{emsdk/**,node_modules/**}"
35
}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set(EM_LINK_FLAGS
1717
"-sINVOKE_RUN=0"
1818
"-sALLOW_MEMORY_GROWTH=1"
1919
# "-sWASM=1"
20-
"-sENVIRONMENT=webview"
20+
"-sENVIRONMENT=web"
2121
"-sFILESYSTEM=0"
2222
# "-sMINIMAL_RUNTIME=1"
2323
"-sMODULARIZE=1"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
88
- [base91](https://base91.sourceforge.net/) - v0.6.0
99
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
10-
- [expat](https://libexpat.github.io/) - v2.6.2
11-
- [graphviz](https://www.graphviz.org/) - v13.0.0
10+
- [expat](https://libexpat.github.io/) - v2.7.1
11+
- [graphviz](https://www.graphviz.org/) - v13.1.0
1212
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
13-
- [zstd](https://github.com/facebook/zstd) - v1.5.6
13+
- [zstd](https://github.com/facebook/zstd) - v1.5.7
1414
- ...more to follow...
1515

1616
Built with:
17-
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.5
17+
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.10
1818

1919
## Homepage and Documents
2020

0 commit comments

Comments
 (0)