@lingui/cli 3.16.0 → 3.16.1
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 +13 -0
- package/package.json +13 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.16.1](https://github.com/lingui/js-lingui/compare/v3.16.0...v3.16.1) (2023-01-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **build:** explicitly expose api/extractors ([#1349](https://github.com/lingui/js-lingui/issues/1349)) ([59b6c97](https://github.com/lingui/js-lingui/commit/59b6c9755280eaf511b2e3393aebeff253dd088d))
|
|
12
|
+
* **build:** Revert typescript update ([#1362](https://github.com/lingui/js-lingui/issues/1362)) ([3f0e61e](https://github.com/lingui/js-lingui/commit/3f0e61eae2417ea78431322b8f1fb5acf4d59170))
|
|
13
|
+
* **cli:** incorrect main entry in package.json ([#1351](https://github.com/lingui/js-lingui/issues/1351)) ([cd430f3](https://github.com/lingui/js-lingui/commit/cd430f31812b5e184007eaa2d22683bd0b82cf84))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
# [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18)
|
|
7
20
|
|
|
8
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lingui/cli",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.1",
|
|
4
4
|
"description": "CLI for working wit message catalogs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -18,16 +18,22 @@
|
|
|
18
18
|
"name": "Tomáš Ehrlich",
|
|
19
19
|
"email": "tomas.ehrlich@gmail.com"
|
|
20
20
|
},
|
|
21
|
-
"main": "./build/
|
|
21
|
+
"main": "./build/lingui.js",
|
|
22
22
|
"bin": {
|
|
23
23
|
"lingui": "./build/lingui.js"
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"require": "./build/
|
|
27
|
+
"require": "./build/lingui.js"
|
|
28
28
|
},
|
|
29
29
|
"./api": {
|
|
30
30
|
"require": "./build/api/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./api/extractors/babel": {
|
|
33
|
+
"require": "./build/api/extractors/babel.js"
|
|
34
|
+
},
|
|
35
|
+
"./api/extractors/typescript": {
|
|
36
|
+
"require": "./build/api/extractors/typescript.js"
|
|
31
37
|
}
|
|
32
38
|
},
|
|
33
39
|
"engines": {
|
|
@@ -44,9 +50,9 @@
|
|
|
44
50
|
"@babel/plugin-syntax-jsx": "^7.10.4",
|
|
45
51
|
"@babel/runtime": "^7.11.2",
|
|
46
52
|
"@babel/types": "^7.11.5",
|
|
47
|
-
"@lingui/babel-plugin-extract-messages": "3.16.
|
|
48
|
-
"@lingui/conf": "3.16.
|
|
49
|
-
"@lingui/core": "3.16.
|
|
53
|
+
"@lingui/babel-plugin-extract-messages": "3.16.1",
|
|
54
|
+
"@lingui/conf": "3.16.1",
|
|
55
|
+
"@lingui/core": "3.16.1",
|
|
50
56
|
"babel-plugin-macros": "^3.0.1",
|
|
51
57
|
"bcp-47": "^1.0.7",
|
|
52
58
|
"chalk": "^4.1.0",
|
|
@@ -84,5 +90,5 @@
|
|
|
84
90
|
"babel-plugin-macros": "2 || 3",
|
|
85
91
|
"typescript": "2 || 3 || 4"
|
|
86
92
|
},
|
|
87
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "bae762a1ef15d0a4d883bc8c1837603b4e79175e"
|
|
88
94
|
}
|