sanity-plugin-transifex 5.1.2 → 5.1.4
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 +5 -17
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -18,8 +18,8 @@ _Recent updates for v4:_ We've added support for the new document internationali
|
|
|
18
18
|
- [Assumptions](#assumptions)
|
|
19
19
|
- [Studio experience](#studio-experience)
|
|
20
20
|
- [Overriding defaults](#overriding-defaults)
|
|
21
|
-
- [License](#license)
|
|
22
21
|
- [Develop and test](#develop-and-test)
|
|
22
|
+
- [License](#license)
|
|
23
23
|
|
|
24
24
|
## Quickstart
|
|
25
25
|
|
|
@@ -174,28 +174,16 @@ To personalize this configuration it's useful to know what arguments go into `Tr
|
|
|
174
174
|
|
|
175
175
|
There are several reasons to override these functions. More general cases are often around ensuring documents serialize and deserialize correctly. Since the serialization functions are used across all our translation plugins currently, you can find some frequently encountered scenarios at [their repository here](https://github.com/sanity-io/sanity-naive-html-serializer), along with code examples for new config.
|
|
176
176
|
|
|
177
|
-
## Migrating to Sanity Studio v3
|
|
178
|
-
|
|
179
|
-
You should not have to do anything to migrate to Sanity Studio v3. If you are using the default configs, you should be able to upgrade without any changes. If you are using custom serialization, you may need to update how `BaseDocumentSerializer` receives your schema.
|
|
180
|
-
|
|
181
|
-
These are outlined in the serializer README [here](https://github.com/sanity-io/sanity-naive-html-serializer#v2-to-v3-changes).
|
|
182
|
-
|
|
183
|
-
## License
|
|
184
|
-
|
|
185
|
-
[MIT](LICENSE) © Sanity.io
|
|
186
|
-
|
|
187
177
|
## Develop & test
|
|
188
178
|
|
|
189
179
|
This plugin is in early stages. We plan on improving some of the user-facing chrome, sorting out some quiet bugs, figuring out where things don't fail elegantly, etc. Please be a part of our development process!
|
|
190
180
|
|
|
191
|
-
This plugin uses [@sanity/plugin-kit](https://github.com/sanity-io/plugin-kit)
|
|
192
|
-
with default configuration for build & watch scripts.
|
|
193
|
-
|
|
194
|
-
See [Testing a plugin in Sanity Studio](https://github.com/sanity-io/plugin-kit#testing-a-plugin-in-sanity-studio)
|
|
195
|
-
on how to run this plugin with hotreload in the studio.
|
|
196
|
-
|
|
197
181
|
### Release new version
|
|
198
182
|
|
|
199
183
|
Releases are handled from the [`sanity-io/plugins`](https://github.com/sanity-io/plugins) monorepo using Changesets.
|
|
200
184
|
|
|
201
185
|
Add a changeset in your PR, then follow the monorepo release workflow to publish from `main`.
|
|
186
|
+
|
|
187
|
+
## License
|
|
188
|
+
|
|
189
|
+
[MIT](LICENSE) © Sanity.io
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity-plugin-transifex",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.4",
|
|
4
4
|
"description": "This plugin provides an in-studio integration with Transifex. It allows your editors to send any document to Transifex with the click of a button, monitor ongoing translations, and import partial or complete translations back into the studio.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"sanity-translations-tab": "6.1.
|
|
30
|
+
"sanity-translations-tab": "^6.1.4"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@sanity/pkg-utils": "^10.5.
|
|
34
|
-
"@types/react": "^19.2.
|
|
33
|
+
"@sanity/pkg-utils": "^10.5.5",
|
|
34
|
+
"@types/react": "^19.2.17",
|
|
35
35
|
"@types/react-dom": "^19.2.3",
|
|
36
36
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
37
37
|
"babel-plugin-styled-components": "^2.3.0",
|
|
38
|
-
"react": "^19.2.
|
|
39
|
-
"react-dom": "^19.2.
|
|
38
|
+
"react": "^19.2.7",
|
|
39
|
+
"react-dom": "^19.2.7",
|
|
40
40
|
"sanity": "^6.0.0",
|
|
41
41
|
"styled-components": "^6.4.2",
|
|
42
42
|
"@repo/package.config": "0.0.0",
|