yuku 0.2.3 → 0.2.4
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/dist/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/yuku.wasm +0 -0
- package/package.json +2 -6
- package/README.md +0 -25
package/dist/browser.js
CHANGED
package/dist/index.js
CHANGED
package/dist/yuku.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yuku",
|
|
3
3
|
"description": "A very fast JavaScript/TypeScript parser written in Zig",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -24,15 +24,11 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "bunup",
|
|
27
|
-
"
|
|
28
|
-
"type-check": "tsc --noEmit",
|
|
29
|
-
"test": "zig build && bun run build && bun test/run.ts"
|
|
27
|
+
"type-check": "tsc --noEmit"
|
|
30
28
|
},
|
|
31
29
|
"devDependencies": {
|
|
32
30
|
"@types/bun": "^1.3.5",
|
|
33
31
|
"bunup": "^0.16.11",
|
|
34
|
-
"fast-deep-equal": "^3.1.3",
|
|
35
|
-
"jest-diff": "^30.2.0",
|
|
36
32
|
"typescript": "^5.9.3"
|
|
37
33
|
},
|
|
38
34
|
"peerDependencies": {
|
package/README.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<!-- markdownlint-disable first-line-h1 -->
|
|
2
|
-
|
|
3
|
-
<!-- markdownlint-start-capture -->
|
|
4
|
-
<!-- markdownlint-disable-file no-inline-html -->
|
|
5
|
-
<div align="center">
|
|
6
|
-
|
|
7
|
-
<!-- markdownlint-disable-next-line no-alt-text -->
|
|
8
|
-
<img src="/assets/logo.svg" alt="Logo" width="300" />
|
|
9
|
-
|
|
10
|
-
[](https://npmjs.com/package/yuku)
|
|
11
|
-
[](https://github.com/sponsors/arshad-yaseen)
|
|
12
|
-
|
|
13
|
-
A very fast JavaScript/TypeScript parser written in Zig to enable JavaScript tooling in Zig.
|
|
14
|
-
|
|
15
|
-
</div>
|
|
16
|
-
|
|
17
|
-
<br/>
|
|
18
|
-
|
|
19
|
-
- Full ECMAScript spec compliance
|
|
20
|
-
- Very fast, built with performance in mind from the start, competitive with established parsers like Oxc.
|
|
21
|
-
- Robust error recovery, partial ASTs on recoverable errors.
|
|
22
|
-
- Rich features, including JSX and TypeScript support.
|
|
23
|
-
- Can output 100% ESTree + TypeScript-ESTree compliant AST when needed.
|
|
24
|
-
|
|
25
|
-
<br/>
|