@sanity/cli 5.8.0-next.59 → 5.8.0-next.61
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/lib/_chunks-cjs/cli.js
CHANGED
|
@@ -41927,9 +41927,13 @@ Sanity TypeGen (Beta)
|
|
|
41927
41927
|
This command is currently in beta and may undergo significant changes. Feedback is welcome!
|
|
41928
41928
|
|
|
41929
41929
|
Usage
|
|
41930
|
-
sanity typegen generate [
|
|
41930
|
+
sanity typegen generate [--watch] [--config-path <value>]
|
|
41931
41931
|
|
|
41932
41932
|
Options:
|
|
41933
|
+
--watch
|
|
41934
|
+
Run the typegen in watch mode
|
|
41935
|
+
Default: false
|
|
41936
|
+
|
|
41933
41937
|
--config-path <path>
|
|
41934
41938
|
Specifies the path to the typegen configuration file. This file should be a JSON file that contains settings for the type generation process.
|
|
41935
41939
|
Default: "sanity-typegen.json"
|
|
@@ -70860,5 +70864,7 @@ function maybeFixMissingWindowsEnvVar() {
|
|
|
70860
70864
|
os__default.default.platform() === "win32" && !("SYSTEMROOT" in process.env) && "SystemRoot" in process.env && (process.env.SYSTEMROOT = process.env.SystemRoot);
|
|
70861
70865
|
}
|
|
70862
70866
|
exports.getCliPkg = getCliPkg;
|
|
70867
|
+
exports.omit = omit;
|
|
70863
70868
|
exports.runCli = runCli;
|
|
70869
|
+
exports.toInteger = toInteger;
|
|
70864
70870
|
//# sourceMappingURL=cli.js.map
|