Skip to content

Commit f8b193e

Browse files
chore(release): 8 packages (#16)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7e8fb13 commit f8b193e

25 files changed

+853
-789
lines changed

bun.lockb

0 Bytes
Binary file not shown.

packages/synth-c/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @sylphx/synth-c
22

3+
## 0.3.1 (2025-12-10)
4+
5+
### ✨ Features
6+
7+
- migrate tree-sitter parsers to WASM (web-tree-sitter) (#15) ([afe1424](https://github.com/SylphxAI/synth/commit/afe1424359f89cdf3e57ea13a98162dee768e2c5))
8+
9+
### 🐛 Bug Fixes
10+
11+
- **types:** add WASM module type declarations to each package ([788e5cb](https://github.com/SylphxAI/synth/commit/788e5cbe2389951bf4777356df45469189d3c633))
12+
313
## 0.2.3 (2025-11-29)
414

515
### 🐛 Bug Fixes

packages/synth-c/package.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
{
2-
"name": "@sylphx/synth-c",
3-
"version": "0.3.0",
4-
"description": "C parser using Synth's universal AST - WASM-based, works everywhere",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
}
13-
},
14-
"scripts": {
15-
"test": "bun test",
16-
"test:watch": "bun test --watch",
17-
"build": "bunup",
18-
"prepack": "bun run build"
19-
},
20-
"keywords": [
21-
"c",
22-
"parser",
23-
"ast",
24-
"synth",
25-
"tree-sitter",
26-
"wasm",
27-
"webassembly",
28-
"c99",
29-
"c11",
30-
"c17"
31-
],
32-
"author": "SylphX",
33-
"license": "MIT",
34-
"dependencies": {
35-
"@sylphx/synth": "workspace:*",
36-
"tree-sitter-wasms": "^0.1.11",
37-
"web-tree-sitter": "^0.24.3"
38-
},
39-
"devDependencies": {
40-
"typescript": "^5.6.0"
41-
}
2+
"name": "@sylphx/synth-c",
3+
"version": "0.3.1",
4+
"description": "C parser using Synth's universal AST - WASM-based, works everywhere",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
}
13+
},
14+
"scripts": {
15+
"test": "bun test",
16+
"test:watch": "bun test --watch",
17+
"build": "bunup",
18+
"prepack": "bun run build"
19+
},
20+
"keywords": [
21+
"c",
22+
"parser",
23+
"ast",
24+
"synth",
25+
"tree-sitter",
26+
"wasm",
27+
"webassembly",
28+
"c99",
29+
"c11",
30+
"c17"
31+
],
32+
"author": "SylphX",
33+
"license": "MIT",
34+
"dependencies": {
35+
"@sylphx/synth": "workspace:*",
36+
"tree-sitter-wasms": "^0.1.11",
37+
"web-tree-sitter": "^0.24.3"
38+
},
39+
"devDependencies": {
40+
"typescript": "^5.6.0"
41+
}
4242
}

packages/synth-go/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @sylphx/synth-go
22

3+
## 0.3.1 (2025-12-10)
4+
5+
### ✨ Features
6+
7+
- migrate tree-sitter parsers to WASM (web-tree-sitter) (#15) ([afe1424](https://github.com/SylphxAI/synth/commit/afe1424359f89cdf3e57ea13a98162dee768e2c5))
8+
9+
### 🐛 Bug Fixes
10+
11+
- **types:** add WASM module type declarations to each package ([788e5cb](https://github.com/SylphxAI/synth/commit/788e5cbe2389951bf4777356df45469189d3c633))
12+
13+
### 💅 Styles
14+
15+
- **synth-go:** fix import order ([ce5a8ef](https://github.com/SylphxAI/synth/commit/ce5a8ef6673b4c2f3edefeb3768fa31c119551ae))
16+
317
## 0.2.3 (2025-11-29)
418

519
### 🐛 Bug Fixes

packages/synth-go/package.json

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
{
2-
"name": "@sylphx/synth-go",
3-
"version": "0.3.0",
4-
"description": "Go parser using Synth's universal AST - WASM-based, works everywhere",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
}
13-
},
14-
"scripts": {
15-
"test": "bun test",
16-
"test:watch": "bun test --watch",
17-
"build": "bunup",
18-
"prepack": "bun run build"
19-
},
20-
"keywords": [
21-
"go",
22-
"golang",
23-
"parser",
24-
"ast",
25-
"synth",
26-
"tree-sitter",
27-
"wasm",
28-
"webassembly"
29-
],
30-
"author": "SylphX",
31-
"license": "MIT",
32-
"dependencies": {
33-
"@sylphx/synth": "workspace:*",
34-
"tree-sitter-wasms": "^0.1.11",
35-
"web-tree-sitter": "^0.24.3"
36-
},
37-
"devDependencies": {
38-
"typescript": "^5.6.0"
39-
}
2+
"name": "@sylphx/synth-go",
3+
"version": "0.3.1",
4+
"description": "Go parser using Synth's universal AST - WASM-based, works everywhere",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
}
13+
},
14+
"scripts": {
15+
"test": "bun test",
16+
"test:watch": "bun test --watch",
17+
"build": "bunup",
18+
"prepack": "bun run build"
19+
},
20+
"keywords": [
21+
"go",
22+
"golang",
23+
"parser",
24+
"ast",
25+
"synth",
26+
"tree-sitter",
27+
"wasm",
28+
"webassembly"
29+
],
30+
"author": "SylphX",
31+
"license": "MIT",
32+
"dependencies": {
33+
"@sylphx/synth": "workspace:*",
34+
"tree-sitter-wasms": "^0.1.11",
35+
"web-tree-sitter": "^0.24.3"
36+
},
37+
"devDependencies": {
38+
"typescript": "^5.6.0"
39+
}
4040
}

packages/synth-java/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @sylphx/synth-java
22

3+
## 0.3.1 (2025-12-10)
4+
5+
### ✨ Features
6+
7+
- migrate tree-sitter parsers to WASM (web-tree-sitter) (#15) ([afe1424](https://github.com/SylphxAI/synth/commit/afe1424359f89cdf3e57ea13a98162dee768e2c5))
8+
9+
### 🐛 Bug Fixes
10+
11+
- **types:** add WASM module type declarations to each package ([788e5cb](https://github.com/SylphxAI/synth/commit/788e5cbe2389951bf4777356df45469189d3c633))
12+
313
## 0.2.3 (2025-11-29)
414

515
### 🐛 Bug Fixes

packages/synth-java/package.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
{
2-
"name": "@sylphx/synth-java",
3-
"version": "0.3.0",
4-
"description": "Java parser using Synth's universal AST - WASM-based, works everywhere",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
}
13-
},
14-
"scripts": {
15-
"test": "bun test",
16-
"test:watch": "bun test --watch",
17-
"build": "bunup",
18-
"prepack": "bun run build"
19-
},
20-
"keywords": [
21-
"java",
22-
"parser",
23-
"ast",
24-
"synth",
25-
"tree-sitter",
26-
"wasm",
27-
"webassembly",
28-
"java8",
29-
"java11",
30-
"java17"
31-
],
32-
"author": "SylphX",
33-
"license": "MIT",
34-
"dependencies": {
35-
"@sylphx/synth": "workspace:*",
36-
"tree-sitter-wasms": "^0.1.11",
37-
"web-tree-sitter": "^0.24.3"
38-
},
39-
"devDependencies": {
40-
"typescript": "^5.6.0"
41-
}
2+
"name": "@sylphx/synth-java",
3+
"version": "0.3.1",
4+
"description": "Java parser using Synth's universal AST - WASM-based, works everywhere",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
}
13+
},
14+
"scripts": {
15+
"test": "bun test",
16+
"test:watch": "bun test --watch",
17+
"build": "bunup",
18+
"prepack": "bun run build"
19+
},
20+
"keywords": [
21+
"java",
22+
"parser",
23+
"ast",
24+
"synth",
25+
"tree-sitter",
26+
"wasm",
27+
"webassembly",
28+
"java8",
29+
"java11",
30+
"java17"
31+
],
32+
"author": "SylphX",
33+
"license": "MIT",
34+
"dependencies": {
35+
"@sylphx/synth": "workspace:*",
36+
"tree-sitter-wasms": "^0.1.11",
37+
"web-tree-sitter": "^0.24.3"
38+
},
39+
"devDependencies": {
40+
"typescript": "^5.6.0"
41+
}
4242
}

packages/synth-php/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @sylphx/synth-php
22

3+
## 0.3.1 (2025-12-10)
4+
5+
### ✨ Features
6+
7+
- migrate tree-sitter parsers to WASM (web-tree-sitter) (#15) ([afe1424](https://github.com/SylphxAI/synth/commit/afe1424359f89cdf3e57ea13a98162dee768e2c5))
8+
9+
### 🐛 Bug Fixes
10+
11+
- **types:** add WASM module type declarations to each package ([788e5cb](https://github.com/SylphxAI/synth/commit/788e5cbe2389951bf4777356df45469189d3c633))
12+
313
## 0.2.3 (2025-11-29)
414

515
### 🐛 Bug Fixes

packages/synth-php/package.json

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
{
2-
"name": "@sylphx/synth-php",
3-
"version": "0.3.0",
4-
"description": "PHP parser using Synth's universal AST - WASM-based, works everywhere",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
}
13-
},
14-
"scripts": {
15-
"test": "bun test",
16-
"test:watch": "bun test --watch",
17-
"build": "bunup",
18-
"prepack": "bun run build"
19-
},
20-
"keywords": [
21-
"php",
22-
"parser",
23-
"ast",
24-
"synth",
25-
"tree-sitter",
26-
"wasm",
27-
"webassembly",
28-
"php7",
29-
"php8"
30-
],
31-
"author": "SylphX",
32-
"license": "MIT",
33-
"dependencies": {
34-
"@sylphx/synth": "workspace:*",
35-
"tree-sitter-wasms": "^0.1.11",
36-
"web-tree-sitter": "^0.24.3"
37-
},
38-
"devDependencies": {
39-
"typescript": "^5.6.0"
40-
}
2+
"name": "@sylphx/synth-php",
3+
"version": "0.3.1",
4+
"description": "PHP parser using Synth's universal AST - WASM-based, works everywhere",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
}
13+
},
14+
"scripts": {
15+
"test": "bun test",
16+
"test:watch": "bun test --watch",
17+
"build": "bunup",
18+
"prepack": "bun run build"
19+
},
20+
"keywords": [
21+
"php",
22+
"parser",
23+
"ast",
24+
"synth",
25+
"tree-sitter",
26+
"wasm",
27+
"webassembly",
28+
"php7",
29+
"php8"
30+
],
31+
"author": "SylphX",
32+
"license": "MIT",
33+
"dependencies": {
34+
"@sylphx/synth": "workspace:*",
35+
"tree-sitter-wasms": "^0.1.11",
36+
"web-tree-sitter": "^0.24.3"
37+
},
38+
"devDependencies": {
39+
"typescript": "^5.6.0"
40+
}
4141
}

0 commit comments

Comments
 (0)