We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1bac70 commit 6aa6697Copy full SHA for 6aa6697
1 file changed
packages/plugin/src/Options.ts
@@ -1,5 +1,15 @@
1
import { ConfigMetaSet, ConfigSet, ConfigType } from 'jackspeak';
2
3
+/*
4
+ * TODO `env` field for options and flags
5
+ * Name the environment variable to use as default value on init, if available
6
+ */
7
+
8
9
+ * TODO `secret` (or similar) field for options and flags
10
+ * Indicate that the actual default value should not be displayed in usage (e.g. for an `env` value)
11
12
13
type MetaSet<T extends ConfigType> = {
14
value: ConfigMetaSet<T, false>;
15
list: ConfigMetaSet<T, true>;
0 commit comments