@lingui/core 3.13.3 → 3.14.0

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/esm/dev.js CHANGED
@@ -3,14 +3,14 @@ import {
3
3
  setupI18n as setupI18nProd,
4
4
  formats as formatsProd,
5
5
  I18n as I18nProd
6
- } from './dev.production.min';
6
+ } from './dev.production.min.js';
7
7
 
8
8
  import {
9
9
  i18n as i18nDev,
10
10
  setupI18n as setupI18nDev,
11
11
  formats as formatsDev,
12
12
  I18n as I18nDev
13
- } from './dev.development';
13
+ } from './dev.development.js';
14
14
 
15
15
  export const i18n = process.env.NODE_ENV === 'production' ? i18nProd : i18nDev;
16
16
  export const setupI18n = process.env.NODE_ENV === 'production' ? setupI18nProd : setupI18nDev;
package/esm/index.js CHANGED
@@ -3,14 +3,14 @@ import {
3
3
  setupI18n as setupI18nProd,
4
4
  formats as formatsProd,
5
5
  I18n as I18nProd
6
- } from './core.production.min';
6
+ } from './core.production.min.js';
7
7
 
8
8
  import {
9
9
  i18n as i18nDev,
10
10
  setupI18n as setupI18nDev,
11
11
  formats as formatsDev,
12
12
  I18n as I18nDev
13
- } from './core.development';
13
+ } from './core.development.js';
14
14
 
15
15
  export const i18n = process.env.NODE_ENV === 'production' ? i18nProd : i18nDev;
16
16
  export const setupI18n = process.env.NODE_ENV === 'production' ? setupI18nProd : setupI18nDev;
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingui/core",
3
- "version": "3.13.3",
3
+ "version": "3.14.0",
4
4
  "sideEffects": false,
5
5
  "description": "I18n tools for javascript",
6
6
  "main": "index.js",