windmill-cli 1.775.2 → 1.776.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 +6 -8
- package/esm/main.js +2015 -1153
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -133,17 +133,15 @@ project guidance shape:
|
|
|
133
133
|
- `.agents/skills/*`
|
|
134
134
|
- `.claude/skills/*`
|
|
135
135
|
|
|
136
|
-
###
|
|
136
|
+
### `windmill-yaml-validator`
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
`wmill lint` imports the sibling `windmill-yaml-validator` package from source rather than
|
|
139
|
+
from npm, so its schemas always match the OpenAPI specs of the current checkout. `bun
|
|
140
|
+
install` regenerates them through this package's `preinstall` script; run it again after
|
|
141
|
+
editing `openflow.openapi.yaml` or `backend/windmill-api/openapi.yaml`:
|
|
139
142
|
|
|
140
143
|
```bash
|
|
141
|
-
|
|
142
|
-
npm run build
|
|
143
|
-
npm link
|
|
144
|
-
|
|
145
|
-
# In cli/
|
|
146
|
-
npm link windmill-yaml-validator
|
|
144
|
+
npm --prefix ../windmill-yaml-validator run gen
|
|
147
145
|
```
|
|
148
146
|
|
|
149
147
|
### Running Tests
|