@lingui/core 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 CHANGED
@@ -3,6 +3,17 @@
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
+ * **core:** sub entry export for react-native ([#1350](https://github.com/lingui/js-lingui/issues/1350)) ([c178ce3](https://github.com/lingui/js-lingui/commit/c178ce3cc91e64d190965dc684df74162cc17d02))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.16.0](https://github.com/lingui/js-lingui/compare/v3.15.0...v3.16.0) (2023-01-18)
7
18
 
8
19
  **Note:** Version bump only for package @lingui/core
package/compile.js ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This entry is for old runtimes which do not support `exports` field in package.json
3
+ * https://github.com/facebook/metro/issues/670
4
+ */
5
+ module.exports = require("./build/cjs/compile.js")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingui/core",
3
- "version": "3.16.0",
3
+ "version": "3.16.1",
4
4
  "sideEffects": false,
5
5
  "description": "I18n tools for javascript",
6
6
  "main": "./build/cjs/index.js",
@@ -43,12 +43,13 @@
43
43
  "files": [
44
44
  "LICENSE",
45
45
  "README.md",
46
- "build/"
46
+ "build/",
47
+ "compile.js"
47
48
  ],
48
49
  "dependencies": {
49
50
  "@babel/runtime": "^7.11.2",
50
51
  "@messageformat/parser": "^5.0.0",
51
52
  "make-plural": "^6.2.2"
52
53
  },
53
- "gitHead": "e8c1f518b988f45f3f6da84333550b215dcde94b"
54
+ "gitHead": "bae762a1ef15d0a4d883bc8c1837603b4e79175e"
54
55
  }
package/build/compile.js DELETED
@@ -1 +0,0 @@
1
- module.exports = require("./cjs/compile.js")
package/build/index.js DELETED
@@ -1 +0,0 @@
1
- module.exports = require("./cjs/index.js")