@lotics/cli 0.94.1 → 0.95.1
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 +4 -3
- package/dist/src/cli.js +84805 -62842
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -206,10 +206,11 @@ lotics app workflow run issueInvoice '{...}' --cleanup # also deletes created
|
|
|
206
206
|
# Edit workflow bodies as files. `app pull` writes src/workflows/<alias>.ts (the
|
|
207
207
|
# faithful server source, wrapped + referencing its .lotics/workflows/<alias>.globals.d.ts);
|
|
208
208
|
# edit the body, then push it back through set_app_workflow — the server verifies it
|
|
209
|
-
# (deploy still never authors workflows).
|
|
210
|
-
#
|
|
209
|
+
# (deploy still never authors workflows). `app workflow check` runs the server's own
|
|
210
|
+
# JS-subset parser + type-check locally, so a body that passes is one `set` will accept
|
|
211
|
+
# (`set` still adds name resolution + lint + structural checks, which need the workspace):
|
|
211
212
|
lotics app workflow pull # rewrite src/workflows/*.ts + globals from the server
|
|
212
|
-
lotics app workflow check # typecheck every body locally ([alias] for one)
|
|
213
|
+
lotics app workflow check # parse + typecheck every body locally ([alias] for one)
|
|
213
214
|
lotics app workflow set issueInvoice # push the edited src/workflows/issueInvoice.ts
|
|
214
215
|
|
|
215
216
|
# Iterate on a named query WITHOUT a deploy: push package.json#lotics.queries.<alias>
|