sanity-plugin-utils 2.0.2 → 2.0.3
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/README.md +1 -21
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# sanity-plugin-utils
|
|
2
2
|
|
|
3
|
-
Handy hooks and clever components for Sanity Studio
|
|
3
|
+
Handy hooks and clever components for Sanity Studio.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -219,24 +219,4 @@ export default function Report() {
|
|
|
219
219
|
|
|
220
220
|
## License
|
|
221
221
|
|
|
222
|
-
MIT © Simeon Griggs
|
|
223
|
-
See LICENSE
|
|
224
|
-
|
|
225
|
-
## License
|
|
226
|
-
|
|
227
222
|
[MIT](LICENSE) © Simeon Griggs
|
|
228
|
-
|
|
229
|
-
## Develop & test
|
|
230
|
-
|
|
231
|
-
This plugin uses [@sanity/plugin-kit](https://github.com/sanity-io/plugin-kit)
|
|
232
|
-
with default configuration for build & watch scripts.
|
|
233
|
-
|
|
234
|
-
See [Testing a plugin in Sanity Studio](https://github.com/sanity-io/plugin-kit#testing-a-plugin-in-sanity-studio)
|
|
235
|
-
on how to run this plugin with hotreload in the studio.
|
|
236
|
-
|
|
237
|
-
### Release new version
|
|
238
|
-
|
|
239
|
-
Run ["CI & Release" workflow](https://github.com/SimeonGriggs/sanity-plugin-utils/actions/workflows/main.yml).
|
|
240
|
-
Make sure to select the main branch and check "Release new version".
|
|
241
|
-
|
|
242
|
-
Semantic release will only release on configured branches, so it is safe to run release on any branch.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity-plugin-utils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Handy hooks and clever components for Sanity Studio v3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"@sanity/icons": "^3.7.4",
|
|
32
32
|
"@sanity/image-url": "^2.1.1",
|
|
33
33
|
"@sanity/ui": "^3.2.0",
|
|
34
|
-
"react-fast-compare": "^3.2.2"
|
|
34
|
+
"react-fast-compare": "^3.2.2",
|
|
35
|
+
"rxjs": "^7.8.2"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
38
|
"@sanity/pkg-utils": "^10.5.5",
|
|
@@ -41,16 +42,14 @@
|
|
|
41
42
|
"babel-plugin-styled-components": "^2.3.0",
|
|
42
43
|
"react": "^19.2.7",
|
|
43
44
|
"react-dom": "^19.2.7",
|
|
44
|
-
"rxjs": "^7.8.2",
|
|
45
45
|
"sanity": "^6.0.0",
|
|
46
46
|
"styled-components": "^6.4.2",
|
|
47
|
-
"@repo/
|
|
48
|
-
"@repo/
|
|
47
|
+
"@repo/tsconfig": "0.0.0",
|
|
48
|
+
"@repo/package.config": "0.0.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"react": "^19.2",
|
|
52
52
|
"react-dom": "^19.2",
|
|
53
|
-
"rxjs": "^7.8",
|
|
54
53
|
"sanity": "^5 || ^6.0.0-0",
|
|
55
54
|
"styled-components": "^6.1"
|
|
56
55
|
},
|