Skip to content

Commit 77a00c9

Browse files
committed
feat: bump version
Signed-off-by: Gordon Smith <[email protected]>
1 parent dc14d8b commit 77a00c9

File tree

21 files changed

+259
-141
lines changed

21 files changed

+259
-141
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dist-test/
2020
/lib-*
2121
node_modules/
2222
/packages/llama/docs
23+
/packages/javac/
2324
/rust
2425
/third-party
2526
/src-ts/*.wasm.ts

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This repository contains a collection of useful c++ libraries compiled to WASM f
88
- [base91](https://base91.sourceforge.net/) - v0.6.0
99
- [duckdb](https://github.com/duckdb/duckdb) - v1.1.1
1010
- [expat](https://libexpat.github.io/) - v2.7.1
11-
- [graphviz](https://www.graphviz.org/) - v13.1.0
11+
- [graphviz](https://www.graphviz.org/) - v13.1.1
1212
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - b3718
1313
- [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.10
17+
- [emsdk](https://github.com/emscripten-core/emsdk) - v4.0.11
1818

1919
## Homepage and Documents
2020

package-lock.json

Lines changed: 97 additions & 108 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,31 +77,31 @@
7777
"update-major": "npm run update-major-root && lerna run update-major"
7878
},
7979
"devDependencies": {
80-
"@eslint/js": "9.30.1",
80+
"@eslint/js": "9.31.0",
8181
"@types/emscripten": "1.40.1",
82-
"@types/node": "24.0.10",
82+
"@types/node": "24.0.15",
8383
"@types/yargs": "17.0.33",
84-
"@typescript-eslint/eslint-plugin": "8.35.1",
85-
"@typescript-eslint/parser": "8.35.1",
84+
"@typescript-eslint/eslint-plugin": "8.37.0",
85+
"@typescript-eslint/parser": "8.37.0",
8686
"@vitest/browser": "3.2.4",
8787
"@vitest/coverage-istanbul": "3.2.4",
8888
"@vitest/coverage-v8": "3.2.4",
89-
"assemblyscript": "0.28.2",
89+
"assemblyscript": "0.28.3",
9090
"chokidar-cli": "3.0.0",
91-
"eslint": "9.30.1",
91+
"eslint": "9.31.0",
9292
"globals": "16.3.0",
9393
"happy-dom": "18.0.1",
9494
"lerna": "8.2.3",
9595
"npm-run-all": "4.1.5",
96-
"playwright": "1.53.2",
96+
"playwright": "1.54.1",
9797
"release-please": "17.1.1",
9898
"rimraf": "6.0.1",
9999
"run-script-os": "1.1.6",
100100
"tslib": "2.8.1",
101101
"typedoc": "0.28.7",
102-
"typedoc-plugin-markdown": "4.7.0",
102+
"typedoc-plugin-markdown": "4.7.1",
103103
"typescript": "5.8.3",
104-
"typescript-eslint": "8.35.1",
104+
"typescript-eslint": "8.37.0",
105105
"vitepress": "1.6.3",
106106
"vitest": "3.2.4"
107107
},

packages/base91/esbuild.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22
import { sfxWasm } from "@hpcc-js/esbuild-plugins/sfx-wrapper";
3-
import { replaceFunction } from "../../utils/esbuild-plugins.js";
3+
import { replaceFunction, replaceString } from "../../utils/esbuild-plugins.js";
44

55
// config ---
66
await neutralTpl("src/index.ts", "dist/index", {
77
plugins: [
88
replaceFunction({
9-
'findWasmBinary': 'const findWasmBinary=()=>"";'
9+
"findWasmBinary": "const findWasmBinary=()=>'';",
10+
}),
11+
replaceString({
12+
"import.meta.url": "''",
1013
}),
1114
sfxWasm()
1215
]

packages/duckdb/esbuild.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import { browserTpl } from "@hpcc-js/esbuild-plugins";
22
import { sfxWasm } from "@hpcc-js/esbuild-plugins/sfx-wrapper";
3-
import { replaceFunction } from "../../utils/esbuild-plugins.js";
3+
import { replaceFunction, replaceString } from "../../utils/esbuild-plugins.js";
44

55
// config ---
66
await browserTpl("src/index.ts", "dist/index", {
77
plugins: [
88
replaceFunction({
99
'findWasmBinary': 'const findWasmBinary=()=>"";'
1010
}),
11+
replaceString({
12+
"import.meta.url": "''",
13+
}),
1114
sfxWasm()
1215
]
1316
});

packages/expat/esbuild.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import { neutralTpl } from "@hpcc-js/esbuild-plugins";
22
import { sfxWasm } from "@hpcc-js/esbuild-plugins/sfx-wrapper";
3-
import { replaceFunction } from "../../utils/esbuild-plugins.js";
3+
import { replaceFunction, replaceString } from "../../utils/esbuild-plugins.js";
44

55
// config ---
66
await neutralTpl("src/index.ts", "dist/index", {
77
plugins: [
88
replaceFunction({
99
'findWasmBinary': 'const findWasmBinary=()=>"";'
1010
}),
11+
replaceString({
12+
"import.meta.url": "''",
13+
}),
1114
sfxWasm()
1215
]
1316
});
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Program",
9+
"type": "node",
10+
"program": "${workspaceFolder}/bin/index.js",
11+
"request": "launch",
12+
"skipFiles": [
13+
"<node_internals>/**"
14+
]
15+
}
16+
]
17+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "gen-types-watch",
6+
"type": "npm",
7+
"script": "gen-types-watch",
8+
"problemMatcher": [
9+
"$tsc-watch"
10+
],
11+
"presentation": {
12+
"group": "group-build"
13+
}
14+
},
15+
{
16+
"label": "bundle-watch",
17+
"type": "npm",
18+
"script": "bundle-watch",
19+
"problemMatcher": [],
20+
"presentation": {
21+
"group": "group-build"
22+
}
23+
},
24+
{
25+
"label": "build",
26+
"dependsOn": [
27+
"gen-types-watch",
28+
"bundle-watch"
29+
],
30+
"group": {
31+
"kind": "build",
32+
"isDefault": true
33+
}
34+
}
35+
]
36+
}

packages/graphviz-cli/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
export { main } from "./main.ts";
2+
13
import { main } from "./main.ts";
24

35
await main();

0 commit comments

Comments
 (0)