@lumis-sh/wasm-bundle-system 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/index.js +2 -11
- package/package.json +4 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3](https://github.com/leandrocp/lumis/compare/wasm-bundle-system@v0.0.2...wasm-bundle-system@v0.0.3) (2026-04-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* language bundles ([#556](https://github.com/leandrocp/lumis/issues/556)) ([6e98734](https://github.com/leandrocp/lumis/commit/6e98734c20d8a86384f3e8b8e2b694c40bbb0f12))
|
|
9
|
+
|
|
3
10
|
## [0.0.2](https://github.com/leandrocp/lumis/compare/wasm-bundle-system@v0.0.1...wasm-bundle-system@v0.0.2) (2026-03-31)
|
|
4
11
|
|
|
5
12
|
|
package/index.js
CHANGED
|
@@ -2,38 +2,29 @@ import wasmAsm from "@lumis-sh/wasm-asm"
|
|
|
2
2
|
import wasmBash from "@lumis-sh/wasm-bash"
|
|
3
3
|
import wasmC from "@lumis-sh/wasm-c"
|
|
4
4
|
import wasmCmake from "@lumis-sh/wasm-cmake"
|
|
5
|
-
import wasmComment from "@lumis-sh/wasm-comment"
|
|
6
5
|
import wasmCpp from "@lumis-sh/wasm-cpp"
|
|
7
6
|
import wasmDiff from "@lumis-sh/wasm-diff"
|
|
8
7
|
import wasmGo from "@lumis-sh/wasm-go"
|
|
9
|
-
import wasmJson from "@lumis-sh/wasm-json"
|
|
10
8
|
import wasmLlvm from "@lumis-sh/wasm-llvm"
|
|
11
9
|
import wasmMake from "@lumis-sh/wasm-make"
|
|
12
|
-
import wasmRegex from "@lumis-sh/wasm-regex"
|
|
13
10
|
import wasmRust from "@lumis-sh/wasm-rust"
|
|
14
|
-
import wasmToml from "@lumis-sh/wasm-toml"
|
|
15
11
|
import wasmWat from "@lumis-sh/wasm-wat"
|
|
16
|
-
import wasmYaml from "@lumis-sh/wasm-yaml"
|
|
17
12
|
import wasmZig from "@lumis-sh/wasm-zig"
|
|
13
|
+
import wasmZsh from "@lumis-sh/wasm-zsh"
|
|
18
14
|
|
|
19
15
|
export const bundledWasms = {
|
|
20
16
|
"asm": wasmAsm,
|
|
21
17
|
"bash": wasmBash,
|
|
22
18
|
"c": wasmC,
|
|
23
19
|
"cmake": wasmCmake,
|
|
24
|
-
"comment": wasmComment,
|
|
25
20
|
"cpp": wasmCpp,
|
|
26
|
-
"diff": wasmDiff,
|
|
27
21
|
"go": wasmGo,
|
|
28
|
-
"json": wasmJson,
|
|
29
22
|
"llvm": wasmLlvm,
|
|
30
23
|
"make": wasmMake,
|
|
31
|
-
"regex": wasmRegex,
|
|
32
24
|
"rust": wasmRust,
|
|
33
|
-
"toml": wasmToml,
|
|
34
25
|
"wat": wasmWat,
|
|
35
|
-
"yaml": wasmYaml,
|
|
36
26
|
"zig": wasmZig,
|
|
27
|
+
"zsh": wasmZsh,
|
|
37
28
|
"plaintext": wasmDiff,
|
|
38
29
|
}
|
|
39
30
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumis-sh/wasm-bundle-system",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "WASM parsers for Lumis system languages bundle",
|
|
5
5
|
"author": "Leandro Pereira",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -43,18 +43,14 @@
|
|
|
43
43
|
"@lumis-sh/wasm-bash": "^0.26.0",
|
|
44
44
|
"@lumis-sh/wasm-c": "^0.26.0",
|
|
45
45
|
"@lumis-sh/wasm-cmake": "^0.26.0",
|
|
46
|
-
"@lumis-sh/wasm-comment": "^0.26.0",
|
|
47
46
|
"@lumis-sh/wasm-cpp": "^0.26.0",
|
|
48
47
|
"@lumis-sh/wasm-diff": "^0.26.0",
|
|
49
48
|
"@lumis-sh/wasm-go": "^0.26.0",
|
|
50
|
-
"@lumis-sh/wasm-json": "^0.26.0",
|
|
51
49
|
"@lumis-sh/wasm-llvm": "^0.26.0",
|
|
52
50
|
"@lumis-sh/wasm-make": "^0.26.0",
|
|
53
|
-
"@lumis-sh/wasm-regex": "^0.26.0",
|
|
54
51
|
"@lumis-sh/wasm-rust": "^0.26.0",
|
|
55
|
-
"@lumis-sh/wasm-toml": "^0.26.0",
|
|
56
52
|
"@lumis-sh/wasm-wat": "^0.26.0",
|
|
57
|
-
"@lumis-sh/wasm-
|
|
58
|
-
"@lumis-sh/wasm-
|
|
53
|
+
"@lumis-sh/wasm-zig": "^0.26.0",
|
|
54
|
+
"@lumis-sh/wasm-zsh": "^0.26.0"
|
|
59
55
|
}
|
|
60
56
|
}
|