We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27114b6 commit 03a50c3Copy full SHA for 03a50c3
docs/10-cli.md
@@ -115,6 +115,27 @@ class CommandName extends AbstractCommand {
115
export default CommandName;
116
```
117
118
+:::tip
119
+
120
+For boolean types, we also support negative values (without a prefix).
121
122
+```js
123
+ update: {
124
+ type: "boolean",
125
+ },
126
+```
127
+```bash
128
+node src/cli.ts ourCommand --update
129
130
+Update Argument will by true
131
132
133
+node src/cli.ts ourCommand --no-update
134
135
+update argumant will be false
136
137
+:::
138
139
## Framework Commands
140
141
The framework comes with a few built-in commands.
0 commit comments