Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ This repository contains a collection of useful c++ libraries compiled to WASM f
- [base91](https://base91.sourceforge.net/) - v0.6.0
- [duckdb](https://github.com/duckdb/duckdb) - v1.3.2
- [expat](https://libexpat.github.io/) - v2.7.1
- [graphviz](https://www.graphviz.org/) - 14.0.1
- [graphviz](https://www.graphviz.org/) - 14.0.2
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
- [zstd](https://github.com/facebook/zstd) - v1.5.7
- ...more to follow...

Built with:
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.15
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.17

## Homepage and Documents

Expand Down
20,994 changes: 8,558 additions & 12,436 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,30 +85,30 @@
"update-major": "npm run update-major-root && lerna run update-major"
},
"devDependencies": {
"@eslint/js": "9.37.0",
"@types/emscripten": "1.41.2",
"@types/node": "24.7.0",
"@eslint/js": "9.38.0",
"@types/emscripten": "1.41.4",
"@types/node": "24.8.1",
"@types/yargs": "17.0.33",
"@typescript-eslint/parser": "8.46.0",
"@typescript-eslint/parser": "8.46.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"assemblyscript": "0.28.8",
"assemblyscript": "0.28.9",
"chokidar-cli": "3.0.0",
"eslint": "9.37.0",
"eslint": "9.38.0",
"globals": "16.4.0",
"happy-dom": "20.0.0",
"happy-dom": "20.0.7",
"lerna": "9.0.0",
"npm-run-all": "4.1.5",
"playwright": "1.56.0",
"release-please": "17.1.2",
"playwright": "1.56.1",
"release-please": "17.1.3",
"rimraf": "6.0.1",
"run-script-os": "1.1.6",
"tslib": "2.8.1",
"typedoc": "0.28.13",
"typedoc": "0.28.14",
"typedoc-plugin-markdown": "4.9.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.0",
"typescript-eslint": "8.46.1",
"vitepress": "1.6.4",
"vitest": "3.2.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/base91/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1"
"@hpcc-js/esbuild-plugins": "1.5.2"
},
"keywords": [
"base64",
Expand Down
2 changes: 1 addition & 1 deletion packages/duckdb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"dependencies": {},
"devDependencies": {
"@duckdb/duckdb-wasm": "1.30.0",
"@hpcc-js/esbuild-plugins": "1.5.1",
"@hpcc-js/esbuild-plugins": "1.5.2",
"mkdirp": "3.0.1"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/expat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1"
"@hpcc-js/esbuild-plugins": "1.5.2"
},
"keywords": [
"graphviz",
Expand Down
2 changes: 1 addition & 1 deletion packages/graphviz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1"
"@hpcc-js/esbuild-plugins": "1.5.2"
},
"keywords": [
"graphviz",
Expand Down
2 changes: 1 addition & 1 deletion packages/graphviz/tests/graphviz.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("graphviz", function () {
let graphviz = await Graphviz.load();
let v = graphviz.version();
expect(v).to.be.a.string;
expect(v).to.equal("14.0.1"); // Update README.md with the new version!!!
expect(v).to.equal("14.0.2"); // Update README.md with the new version!!!
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Hard-coding the exact version string makes this test require edits for every patch release. Consider deriving the expected value from a single source of truth (e.g., reading package.json's version or asserting a prefix like v.startsWith("14.0.")) to reduce churn.

Suggested change
expect(v).to.equal("14.0.2"); // Update README.md with the new version!!!
expect(v.startsWith("14.0.")).to.be.true; // Accept any patch version for 14.0.x

Copilot uses AI. Check for mistakes.
console.log("graphviz version: " + v);
Graphviz.unload();

Expand Down
2 changes: 1 addition & 1 deletion packages/llama/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"dependencies": {},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1"
"@hpcc-js/esbuild-plugins": "1.5.2"
},
"keywords": [
"graphviz",
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"yargs": "18.0.0"
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1",
"@hpcc-js/esbuild-plugins": "1.5.2",
"@hpcc-js/wasm-base91": "^1.6.1",
"@hpcc-js/wasm-duckdb": "^1.9.1",
"@hpcc-js/wasm-expat": "^1.6.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/zstd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "1.5.1"
"@hpcc-js/esbuild-plugins": "1.5.2"
},
"keywords": [
"graphviz",
Expand Down
2 changes: 1 addition & 1 deletion scripts/cpp-install-emsdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# List of current version can be found in https://github.com/emscripten-core/emsdk/tags ---
# UPDATE README.md
VERSION=4.0.15
VERSION=4.0.17

if [ ! -d "./emsdk" ]
then
Expand Down
8 changes: 4 additions & 4 deletions tests/bundlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"@hpcc-js/wasm-graphviz": "file:../../packages/graphviz",
"@hpcc-js/wasm-llama": "file:../../packages/llama",
"@hpcc-js/wasm-zstd": "file:../../packages/zstd",
"@rollup/plugin-node-resolve": "16.0.2",
"@rollup/plugin-commonjs": "28.0.6",
"rollup": "4.52.4",
"webpack": "5.102.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-commonjs": "28.0.8",
"rollup": "4.52.5",
"webpack": "5.102.1",
"webpack-cli": "6.0.1"
}
}
2 changes: 1 addition & 1 deletion vcpkg-overlays/graphviz/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ vcpkg_from_gitlab(
OUT_SOURCE_PATH SOURCE_PATH
REPO graphviz/graphviz
REF "${VERSION}"
SHA512 edfde09fdd47d5e10c2c531fcc28749b07be49c2a5506102a04a0fbe1321441aaba44545ed7b983c78c510eec894f823c260bbfa06109c29c15eb591b16275d6
SHA512 75244193807105f7e7478ca275aeb5906119da1ee9a85500ecd9e392d2ede3e5063e1e8d50ce8529b4a5331c385e9c2b13ec3d70291040562efdb1386f9dcfa3
HEAD_REF main
)

Expand Down
2 changes: 1 addition & 1 deletion vcpkg-overlays/graphviz/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphviz",
"version-semver": "14.0.1",
"version-semver": "14.0.2",
"port-version": 0,
"homepage": "https://graphviz.org/",
"description": "Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.",
Expand Down
Loading