@sanity/cli 4.9.0-next.18 → 4.9.0-next.19
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 +7 -5
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/lib/index.d.mts +24 -1
- package/lib/index.d.ts +24 -1
- package/package.json +6 -6
package/lib/_chunks-cjs/cli.js
CHANGED
|
@@ -47758,11 +47758,13 @@ export default defineCliConfig({
|
|
|
47758
47758
|
projectId: '%projectId%',
|
|
47759
47759
|
dataset: '%dataset%'
|
|
47760
47760
|
},
|
|
47761
|
-
|
|
47762
|
-
|
|
47763
|
-
|
|
47764
|
-
|
|
47765
|
-
|
|
47761
|
+
deployment: {
|
|
47762
|
+
/**
|
|
47763
|
+
* Enable auto-updates for studios.
|
|
47764
|
+
* Learn more at https://www.sanity.io/docs/cli#auto-updates
|
|
47765
|
+
*/
|
|
47766
|
+
autoUpdates: __BOOL__autoUpdates__,
|
|
47767
|
+
}
|
|
47766
47768
|
})
|
|
47767
47769
|
`;
|
|
47768
47770
|
function createCliConfig(options2) {
|