gt-react 10.6.3-alpha.1 → 10.6.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/CHANGELOG.md +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# gt-react
|
|
2
2
|
|
|
3
|
+
## 10.6.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#698](https://github.com/generaltranslation/gt/pull/698) [`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b) Thanks [@brian-lou](https://github.com/brian-lou)! - Switch monorepo package manager to pnpm (no new features or bugs fixed). Please report issues to https://github.com/generaltranslation/gt
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`9eefc14`](https://github.com/generaltranslation/gt/commit/9eefc14577013fcfa699344c4a950c12d3b3350b)]:
|
|
10
|
+
- @generaltranslation/supported-locales@2.0.14
|
|
11
|
+
- generaltranslation@7.6.4
|
|
12
|
+
|
|
3
13
|
## 10.6.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gt-react",
|
|
3
|
-
"version": "10.6.3
|
|
3
|
+
"version": "10.6.3",
|
|
4
4
|
"description": "A React library for automatic internationalization.",
|
|
5
5
|
"main": "./dist/index.cjs.min.cjs",
|
|
6
6
|
"module": "./dist/index.esm.min.mjs",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"react-dom": ">=16.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@generaltranslation/supported-locales": "2.0.
|
|
18
|
-
"generaltranslation": "7.6.4
|
|
17
|
+
"@generaltranslation/supported-locales": "2.0.14",
|
|
18
|
+
"generaltranslation": "7.6.4"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"patch": "pnpm version patch",
|
|
96
96
|
"transpile": "tsc",
|
|
97
97
|
"build": "rollup -c",
|
|
98
|
-
"build:clean": "
|
|
98
|
+
"build:clean": "sh ../../scripts/clean.sh && pnpm run build",
|
|
99
99
|
"build:release": "pnpm run build:clean",
|
|
100
100
|
"release": "pnpm run build:clean && pnpm publish",
|
|
101
101
|
"release:alpha": "pnpm run build:clean && pnpm publish --tag alpha",
|