@lingui/conf 5.0.0-next.1 → 5.0.0-next.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/dist/index.cjs CHANGED
@@ -427,7 +427,7 @@ function getConfig({
427
427
  "https://lingui.dev/ref/conf"
428
428
  )}`
429
429
  );
430
- throw new Error("No Config");
430
+ throw new Error("No Lingui config found");
431
431
  }
432
432
  const userConfig = result ? result.config : {};
433
433
  return makeConfig(
package/dist/index.mjs CHANGED
@@ -419,7 +419,7 @@ function getConfig({
419
419
  "https://lingui.dev/ref/conf"
420
420
  )}`
421
421
  );
422
- throw new Error("No Config");
422
+ throw new Error("No Lingui config found");
423
423
  }
424
424
  const userConfig = result ? result.config : {};
425
425
  return makeConfig(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingui/conf",
3
- "version": "5.0.0-next.1",
3
+ "version": "5.0.0-next.3",
4
4
  "sideEffects": false,
5
5
  "description": "Get lingui configuration from package.json",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  "module": "dist/index.mjs",
19
19
  "types": "dist/index.d.ts",
20
20
  "engines": {
21
- "node": ">=16.0.0"
21
+ "node": ">=20.0.0"
22
22
  },
23
23
  "scripts": {
24
24
  "build": "rimraf ./dist && unbuild",
@@ -42,5 +42,5 @@
42
42
  "tsd": "^0.26.1",
43
43
  "unbuild": "^2.0.0"
44
44
  },
45
- "gitHead": "7936155f7b29ecdc6191042a9a2e363962ab482d"
45
+ "gitHead": "c027f0e45978eae89665872861cfcafa89f24078"
46
46
  }