@lumis-sh/wasm-typescript 0.23.2 → 0.26.0
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/README.md +9 -16
- package/package.json +8 -1
- package/tree-sitter-typescript.wasm +0 -0
package/README.md
CHANGED
|
@@ -2,28 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Tree-sitter WASM grammar for typescript
|
|
4
4
|
|
|
5
|
-
Built with [`tree-sitter build --wasm`](https://tree-sitter.github.io/tree-sitter/cli/build.html) `v0.
|
|
5
|
+
Built with [`tree-sitter build --wasm`](https://tree-sitter.github.io/tree-sitter/cli/build.html) `v0.26.6`
|
|
6
6
|
|
|
7
|
-
Used by [Lumis](https://lumis.sh) and compatible with [web-tree-sitter](https://www.npmjs.com/package/web-tree-sitter) and other WASM runtimes.
|
|
7
|
+
Used by [Lumis](https://lumis.sh) and compatible with [web-tree-sitter](https://www.npmjs.com/package/web-tree-sitter) v0.26 and other WASM runtimes.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Parser
|
|
10
10
|
|
|
11
|
-
| Parser |
|
|
12
|
-
| ------ |
|
|
13
|
-
| [https://github.com/tree-sitter/tree-sitter-typescript.git](https://github.com/tree-sitter/tree-sitter-typescript.git) |
|
|
11
|
+
| Parser | Version | Rev |
|
|
12
|
+
| ------ | ------- | --- |
|
|
13
|
+
| [https://github.com/tree-sitter/tree-sitter-typescript.git](https://github.com/tree-sitter/tree-sitter-typescript.git) | 0.23.2 | f975a621f4e7f532fe322e13c4f79495e0a7b2e7 |
|
|
14
14
|
|
|
15
15
|
## CDN
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- [https://unpkg.com/@lumis-sh/wasm-typescript@0.23.2/tree-sitter-typescript.wasm](https://unpkg.com/@lumis-sh/wasm-typescript@0.23.2/tree-sitter-typescript.wasm)
|
|
20
|
-
- [https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript@0.23.2/tree-sitter-typescript.wasm](https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript@0.23.2/tree-sitter-typescript.wasm)
|
|
21
|
-
|
|
22
|
-
**latest**
|
|
23
|
-
|
|
24
|
-
- [https://unpkg.com/@lumis-sh/wasm-typescript/tree-sitter-typescript.wasm](https://unpkg.com/@lumis-sh/wasm-typescript/tree-sitter-typescript.wasm)
|
|
25
|
-
- [https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript/tree-sitter-typescript.wasm](https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript/tree-sitter-typescript.wasm)
|
|
17
|
+
- [https://unpkg.com/@lumis-sh/wasm-typescript@0.26/tree-sitter-typescript.wasm](https://unpkg.com/@lumis-sh/wasm-typescript@0.26/tree-sitter-typescript.wasm)
|
|
18
|
+
- [https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript@0.26/tree-sitter-typescript.wasm](https://cdn.jsdelivr.net/npm/@lumis-sh/wasm-typescript@0.26/tree-sitter-typescript.wasm)
|
|
26
19
|
|
|
27
20
|
## License
|
|
28
21
|
|
|
29
|
-
|
|
22
|
+
This package redistributes the parser source listed above; see that project for its license.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumis-sh/wasm-typescript",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "Tree-sitter WASM grammar for tree-sitter-typescript",
|
|
5
5
|
"author": "Leandro Pereira",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/leandrocp/lumis.git"
|
|
11
11
|
},
|
|
12
|
+
"lumis": {
|
|
13
|
+
"language": "typescript",
|
|
14
|
+
"parser": "tree-sitter-typescript",
|
|
15
|
+
"upstreamVersion": "0.23.2",
|
|
16
|
+
"rev": "f975a621f4e7f532fe322e13c4f79495e0a7b2e7",
|
|
17
|
+
"treeSitter": "0.26"
|
|
18
|
+
},
|
|
12
19
|
"keywords": ["lumis-sh", "wasm", "tree-sitter"],
|
|
13
20
|
"files": ["*.wasm", "README.md", "LICENSE"]
|
|
14
21
|
}
|
|
Binary file
|