@sanity/cli 3.89.0 → 3.90.0
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 +4 -4
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/package.json +8 -8
- package/src/actions/init-project/templates/appQuickstart.ts +2 -2
- package/src/actions/init-project/templates/appSanityUi.ts +2 -2
- package/templates/app-quickstart/src/ExampleComponent.css +6 -0
- package/templates/app-sanity-ui/src/App.tsx +5 -7
- package/templates/app-sanity-ui/src/SanityUI.tsx +23 -0
package/lib/_chunks-cjs/cli.js
CHANGED
@@ -47582,8 +47582,8 @@ function determineAppTemplate(templateName) {
|
|
47582
47582
|
}
|
47583
47583
|
const appTemplate = {
|
47584
47584
|
dependencies: {
|
47585
|
-
"@sanity/sdk": "^
|
47586
|
-
"@sanity/sdk-react": "^
|
47585
|
+
"@sanity/sdk": "^2",
|
47586
|
+
"@sanity/sdk-react": "^2",
|
47587
47587
|
react: "^19",
|
47588
47588
|
"react-dom": "^19"
|
47589
47589
|
},
|
@@ -47600,8 +47600,8 @@ const appTemplate = {
|
|
47600
47600
|
}
|
47601
47601
|
}, appSanityUiTemplate = {
|
47602
47602
|
dependencies: {
|
47603
|
-
"@sanity/sdk": "^
|
47604
|
-
"@sanity/sdk-react": "^
|
47603
|
+
"@sanity/sdk": "^2",
|
47604
|
+
"@sanity/sdk-react": "^2",
|
47605
47605
|
"@sanity/ui": "^2",
|
47606
47606
|
react: "^19",
|
47607
47607
|
"react-dom": "^19",
|