@sanity/cli-test 0.0.0-20260417120929 → 0.0.0-20260417124052
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/fixtures/basic-app/package.json +5 -5
- package/fixtures/basic-functions/package.json +2 -2
- package/fixtures/basic-studio/package.json +4 -4
- package/fixtures/basic-studio/sanity.cli.ts +2 -2
- package/fixtures/graphql-studio/package.json +4 -4
- package/fixtures/multi-workspace-studio/package.json +4 -4
- package/fixtures/nextjs-app/package.json +4 -4
- package/fixtures/prebuilt-app/package.json +5 -5
- package/fixtures/prebuilt-studio/package.json +4 -4
- package/fixtures/worst-case-studio/package.json +7 -7
- package/package.json +5 -5
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"start": "sanity start"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@sanity/sdk": "^2.
|
|
16
|
-
"@sanity/sdk-react": "^2.
|
|
17
|
-
"react": "^19.2.
|
|
18
|
-
"react-dom": "^19.2.
|
|
15
|
+
"@sanity/sdk": "^2.8.0",
|
|
16
|
+
"@sanity/sdk-react": "^2.8.0",
|
|
17
|
+
"react": "^19.2.5",
|
|
18
|
+
"react-dom": "^19.2.5",
|
|
19
19
|
"sanity": "^5.20.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/react": "^19.2.
|
|
22
|
+
"@types/react": "^19.2.14",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@sanity/vision": "^5.20.0",
|
|
19
|
-
"react": "^19.2.
|
|
20
|
-
"react-dom": "^19.2.
|
|
19
|
+
"react": "^19.2.5",
|
|
20
|
+
"react-dom": "^19.2.5",
|
|
21
21
|
"sanity": "^5.20.0",
|
|
22
|
-
"styled-components": "^6.
|
|
22
|
+
"styled-components": "^6.4.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/react": "^19.2.
|
|
25
|
+
"@types/react": "^19.2.14",
|
|
26
26
|
"typescript": "^5.9.3"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -2,8 +2,8 @@ import {defineCliConfig} from 'sanity/cli'
|
|
|
2
2
|
|
|
3
3
|
export default defineCliConfig({
|
|
4
4
|
api: {
|
|
5
|
-
dataset: 'test',
|
|
6
|
-
projectId: 'ppsg7ml5',
|
|
5
|
+
dataset: process.env.SANITY_E2E_DATASET || 'test',
|
|
6
|
+
projectId: process.env.SANITY_E2E_PROJECT_ID || 'ppsg7ml5',
|
|
7
7
|
},
|
|
8
8
|
deployment: {
|
|
9
9
|
autoUpdates: true,
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@sanity/vision": "^5.20.0",
|
|
16
|
-
"react": "^19.2.
|
|
17
|
-
"react-dom": "^19.2.
|
|
16
|
+
"react": "^19.2.5",
|
|
17
|
+
"react-dom": "^19.2.5",
|
|
18
18
|
"sanity": "^5.20.0",
|
|
19
|
-
"styled-components": "^6.
|
|
19
|
+
"styled-components": "^6.4.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/react": "^19.2.
|
|
22
|
+
"@types/react": "^19.2.14",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@sanity/vision": "^5.20.0",
|
|
19
|
-
"react": "^19.2.
|
|
20
|
-
"react-dom": "^19.2.
|
|
19
|
+
"react": "^19.2.5",
|
|
20
|
+
"react-dom": "^19.2.5",
|
|
21
21
|
"sanity": "^5.20.0",
|
|
22
|
-
"styled-components": "^6.
|
|
22
|
+
"styled-components": "^6.4.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/react": "^19.2.
|
|
25
|
+
"@types/react": "^19.2.14",
|
|
26
26
|
"typescript": "^5.9.3"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"build": "next build"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"next": "^16.2.
|
|
11
|
-
"react": "^19.2.
|
|
12
|
-
"react-dom": "^19.2.
|
|
10
|
+
"next": "^16.2.3",
|
|
11
|
+
"react": "^19.2.5",
|
|
12
|
+
"react-dom": "^19.2.5"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/react": "^19.2.14",
|
|
16
|
-
"typescript": "^5.
|
|
16
|
+
"typescript": "^5.9.3"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"preview": "sanity preview"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@sanity/sdk": "^2.
|
|
16
|
-
"@sanity/sdk-react": "^2.
|
|
17
|
-
"react": "^19.2.
|
|
18
|
-
"react-dom": "^19.2.
|
|
15
|
+
"@sanity/sdk": "^2.8.0",
|
|
16
|
+
"@sanity/sdk-react": "^2.8.0",
|
|
17
|
+
"react": "^19.2.5",
|
|
18
|
+
"react-dom": "^19.2.5",
|
|
19
19
|
"sanity": "^5.20.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/react": "^19.2.
|
|
22
|
+
"@types/react": "^19.2.14",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"preview": "sanity preview"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"react": "^19.2.
|
|
17
|
-
"react-dom": "^19.2.
|
|
16
|
+
"react": "^19.2.5",
|
|
17
|
+
"react-dom": "^19.2.5",
|
|
18
18
|
"sanity": "^5.20.0",
|
|
19
|
-
"styled-components": "^6.
|
|
19
|
+
"styled-components": "^6.4.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/react": "^19.2.
|
|
22
|
+
"@types/react": "^19.2.14",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -15,19 +15,19 @@
|
|
|
15
15
|
"start": "sanity start"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@sanity/code-input": "^7.0
|
|
18
|
+
"@sanity/code-input": "^7.1.0",
|
|
19
19
|
"@sanity/vision": "^5.20.0",
|
|
20
|
-
"react": "^19.2.
|
|
21
|
-
"react-dom": "^19.2.
|
|
20
|
+
"react": "^19.2.5",
|
|
21
|
+
"react-dom": "^19.2.5",
|
|
22
22
|
"sanity": "^5.20.0",
|
|
23
23
|
"sanity-plugin-media": "^4.1.1",
|
|
24
|
-
"styled-components": "^6.
|
|
25
|
-
"vite-tsconfig-paths": "^6.
|
|
24
|
+
"styled-components": "^6.4.0",
|
|
25
|
+
"vite-tsconfig-paths": "^6.1.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@sanity/color": "^3.0.6",
|
|
29
|
-
"@types/react": "^19.2.
|
|
29
|
+
"@types/react": "^19.2.14",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
|
-
"vite": "^7.3.
|
|
31
|
+
"vite": "^7.3.2"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/cli-test",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-20260417124052",
|
|
4
4
|
"description": "Sanity CLI test helpers and utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -62,18 +62,18 @@
|
|
|
62
62
|
"rimraf": "^6.0.1",
|
|
63
63
|
"tsx": "^4.21.0",
|
|
64
64
|
"typescript": "^5.9.3",
|
|
65
|
-
"vitest": "^4.1.
|
|
65
|
+
"vitest": "^4.1.4",
|
|
66
66
|
"yaml": "^2.8.3",
|
|
67
|
-
"@repo/tsconfig": "3.70.0",
|
|
68
67
|
"@repo/package.config": "0.0.1",
|
|
69
|
-
"@
|
|
68
|
+
"@repo/tsconfig": "3.70.0",
|
|
69
|
+
"@sanity/cli-core": "0.0.0-20260417124052",
|
|
70
70
|
"@sanity/eslint-config-cli": "1.1.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"@oclif/core": "^4.0.0",
|
|
74
74
|
"@sanity/client": "^7.0.0",
|
|
75
75
|
"vitest": ">=3.0.0 <5.0.0",
|
|
76
|
-
"@sanity/cli-core": "0.0.0-
|
|
76
|
+
"@sanity/cli-core": "0.0.0-20260417124052"
|
|
77
77
|
},
|
|
78
78
|
"engines": {
|
|
79
79
|
"node": ">=20.19.1 <22 || >=22.12"
|