@sanity/cli 3.75.1-canary.110 → 3.75.1-canary.151
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sanity/cli",
|
3
|
-
"version": "3.75.1-canary.
|
3
|
+
"version": "3.75.1-canary.151+ccab07e8db",
|
4
4
|
"description": "Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets",
|
5
5
|
"keywords": [
|
6
6
|
"sanity",
|
@@ -57,11 +57,11 @@
|
|
57
57
|
},
|
58
58
|
"dependencies": {
|
59
59
|
"@babel/traverse": "^7.23.5",
|
60
|
-
"@sanity/client": "^6.28.
|
61
|
-
"@sanity/codegen": "3.75.1-canary.
|
60
|
+
"@sanity/client": "^6.28.1",
|
61
|
+
"@sanity/codegen": "3.75.1-canary.151+ccab07e8db",
|
62
62
|
"@sanity/telemetry": "^0.7.7",
|
63
63
|
"@sanity/template-validator": "^2.4.0",
|
64
|
-
"@sanity/util": "3.75.1-canary.
|
64
|
+
"@sanity/util": "3.75.1-canary.151+ccab07e8db",
|
65
65
|
"chalk": "^4.1.2",
|
66
66
|
"debug": "^4.3.4",
|
67
67
|
"decompress": "^4.2.0",
|
@@ -75,13 +75,13 @@
|
|
75
75
|
"validate-npm-package-name": "^3.0.0"
|
76
76
|
},
|
77
77
|
"devDependencies": {
|
78
|
-
"@repo/package.config": "3.
|
79
|
-
"@repo/test-config": "3.
|
78
|
+
"@repo/package.config": "3.77.1",
|
79
|
+
"@repo/test-config": "3.77.1",
|
80
80
|
"@rexxars/gitconfiglocal": "^3.0.1",
|
81
81
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
82
82
|
"@sanity/eslint-config-studio": "^4.0.0",
|
83
83
|
"@sanity/generate-help-url": "^3.0.0",
|
84
|
-
"@sanity/types": "3.75.1-canary.
|
84
|
+
"@sanity/types": "3.75.1-canary.151+ccab07e8db",
|
85
85
|
"@types/babel__traverse": "^7.20.5",
|
86
86
|
"@types/configstore": "^5.0.1",
|
87
87
|
"@types/cpx": "^1.5.2",
|
@@ -125,13 +125,13 @@
|
|
125
125
|
"semver": "^7.3.5",
|
126
126
|
"semver-compare": "^1.0.0",
|
127
127
|
"tar": "^6.1.11",
|
128
|
-
"vite": "^6.1.
|
129
|
-
"vitest": "^3.0.
|
128
|
+
"vite": "^6.1.1",
|
129
|
+
"vitest": "^3.0.7",
|
130
130
|
"which": "^2.0.2",
|
131
131
|
"xdg-basedir": "^4.0.0"
|
132
132
|
},
|
133
133
|
"engines": {
|
134
134
|
"node": ">=18"
|
135
135
|
},
|
136
|
-
"gitHead": "
|
136
|
+
"gitHead": "ccab07e8dbae8c7c5b54e2a9ad8769a70f82eedd"
|
137
137
|
}
|
@@ -1268,7 +1268,7 @@ export default async function initSanity(
|
|
1268
1268
|
]
|
1269
1269
|
|
1270
1270
|
const chosenOrg = await prompt.single({
|
1271
|
-
message:
|
1271
|
+
message: `Select organization to attach ${isCoreAppTemplate ? 'application' : 'project'} to`,
|
1272
1272
|
type: 'list',
|
1273
1273
|
choices: organizationChoices,
|
1274
1274
|
})
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import {type SanityConfig} from '@sanity/sdk'
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import {SanityApp} from '@sanity/sdk-react/components'
|
3
|
+
import {ExampleComponent} from './ExampleComponent'
|
4
4
|
|
5
5
|
export function App() {
|
6
6
|
|
@@ -17,7 +17,7 @@ export function App() {
|
|
17
17
|
}
|
18
18
|
|
19
19
|
return (
|
20
|
-
<SanityApp
|
20
|
+
<SanityApp sanityConfig={sanityConfig}>
|
21
21
|
{/* add your own components here! */}
|
22
22
|
<ExampleComponent />
|
23
23
|
</SanityApp>
|