@vayo-hq/ast 0.1.1-beta.1 → 0.1.1-beta.2
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 +6 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -53,9 +53,13 @@ router.get("/orders/:id", getOrder);
|
|
|
53
53
|
from the one-line `summary` every route already gets for free.
|
|
54
54
|
|
|
55
55
|
Most people never call this directly —
|
|
56
|
-
[
|
|
56
|
+
[`@vayo-hq/cli`](https://www.npmjs.com/package/@vayo-hq/cli)'s `vayo scan` command
|
|
57
57
|
is the intended entry point. This package exists standalone for anyone
|
|
58
|
-
building custom tooling around the same static pass
|
|
58
|
+
building custom tooling around the same static pass:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npm install @vayo-hq/ast@beta
|
|
62
|
+
```
|
|
59
63
|
|
|
60
64
|
## License
|
|
61
65
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vayo-hq/ast",
|
|
3
|
-
"version": "0.1.1-beta.
|
|
3
|
+
"version": "0.1.1-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Static analysis pass: express-list-endpoints + ts-morph. Produces route/middleware/scope metadata to merge with runtime capture.",
|
|
6
6
|
"repository": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"express-list-endpoints": "^7.1.0",
|
|
20
20
|
"ts-morph": "^23.0.0",
|
|
21
|
-
"@vayo-hq/types": "0.1.1-beta.
|
|
21
|
+
"@vayo-hq/types": "0.1.1-beta.2"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsc -b",
|