yukigo-haskell-parser 0.1.2 → 0.1.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 +6 -0
- package/README.md +1 -6
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,9 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
Parser for a subset of Haskell written in Typescript using [nearley.js](https://nearley.js.org/) and [moo](https://github.com/no-context/moo).
|
|
4
4
|
|
|
5
|
-
Parses a valid [yukigo](https://github.com/
|
|
6
|
-
|
|
7
|
-
## List of missing features
|
|
8
|
-
- [Standard library](http://www.zvon.org/other/haskell/Outputprelude/functionIndex.html)
|
|
9
|
-
- [Type classes](http://www.zvon.org/other/haskell/Outputprelude/classIndex.html)
|
|
10
|
-
- ...
|
|
5
|
+
Parses a valid [yukigo](https://github.com/miyukiproject/yukigo) AST.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yukigo-haskell-parser",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,11 +26,13 @@
|
|
|
26
26
|
"tsx": "^4.20.6",
|
|
27
27
|
"typescript": "^5.9.2"
|
|
28
28
|
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"yukigo-ast": "^0.2.0"
|
|
31
|
+
},
|
|
29
32
|
"dependencies": {
|
|
30
33
|
"moo": "^0.5.2",
|
|
31
34
|
"moo-ignore": "^2.5.3",
|
|
32
35
|
"moo-indentation-lexer": "^6.0.0",
|
|
33
|
-
"nearley": "^2.20.1"
|
|
34
|
-
"yukigo-ast": "^0.2.0"
|
|
36
|
+
"nearley": "^2.20.1"
|
|
35
37
|
}
|
|
36
38
|
}
|