@lingui/loader 4.0.0-next.4 → 4.0.0-next.5

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/dist/index.cjs CHANGED
@@ -26,5 +26,6 @@ const loader = async function(source) {
26
26
  pseudoLocale: config.pseudoLocale
27
27
  });
28
28
  };
29
+ const loader$1 = loader;
29
30
 
30
- module.exports = loader;
31
+ module.exports = loader$1;
package/dist/index.mjs CHANGED
@@ -24,5 +24,6 @@ const loader = async function(source) {
24
24
  pseudoLocale: config.pseudoLocale
25
25
  });
26
26
  };
27
+ const loader$1 = loader;
27
28
 
28
- export { loader as default };
29
+ export { loader$1 as default };
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@lingui/loader",
3
- "version": "4.0.0-next.4",
3
+ "version": "4.0.0-next.5",
4
4
  "description": "webpack loader for lingui message catalogs",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.mjs",
8
+ "sideEffects": false,
8
9
  "author": {
9
10
  "name": "Tomáš Ehrlich",
10
11
  "email": "tomas.ehrlich@gmail.com"
@@ -41,16 +42,16 @@
41
42
  ],
42
43
  "dependencies": {
43
44
  "@babel/runtime": "^7.20.13",
44
- "@lingui/cli": "^4.0.0-next.4",
45
- "@lingui/conf": "^4.0.0-next.4"
45
+ "@lingui/cli": "^4.0.0-next.5",
46
+ "@lingui/conf": "^4.0.0-next.5"
46
47
  },
47
48
  "devDependencies": {
48
- "@lingui/format-json": "^4.0.0-next.4",
49
+ "@lingui/format-json": "^4.0.0-next.5",
49
50
  "unbuild": "^1.1.2",
50
51
  "webpack": "^5.76.1"
51
52
  },
52
53
  "peerDependencies": {
53
54
  "webpack": "^5.0.0"
54
55
  },
55
- "gitHead": "3b999e35d26e67dec7cf0591f794be782e11022c"
56
+ "gitHead": "bdbd6cf310cbcf09e1fe288f20ef530c28de481d"
56
57
  }