@koine/i18n 2.0.0-beta.64 → 2.0.0-beta.65

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/api.cjs.js CHANGED
@@ -1277,6 +1277,7 @@ export const useTo = () => {
1277
1277
  ) => {
1278
1278
  const [routeId, params] = args;
1279
1279
  return (
1280
+ // @ts-expect-error nevermind for now
1280
1281
  params ? to(routeId, params, locale) : to(routeId, locale)
1281
1282
  ) as I18n.RoutePathnames[Id];
1282
1283
  };
package/api.esm.js CHANGED
@@ -1255,6 +1255,7 @@ export const useTo = () => {
1255
1255
  ) => {
1256
1256
  const [routeId, params] = args;
1257
1257
  return (
1258
+ // @ts-expect-error nevermind for now
1258
1259
  params ? to(routeId, params, locale) : to(routeId, locale)
1259
1260
  ) as I18n.RoutePathnames[Id];
1260
1261
  };
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "name": "@koine/i18n",
3
3
  "sideEffects": false,
4
4
  "dependencies": {
5
- "@koine/node": "2.0.0-beta.64",
6
- "@koine/utils": "2.0.0-beta.64",
5
+ "@koine/node": "2.0.0-beta.65",
6
+ "@koine/utils": "2.0.0-beta.65",
7
7
  "glob": "^10.3.10",
8
8
  "webpack": "^5.90.1",
9
9
  "minimatch": "^9.0.3",
@@ -58,5 +58,5 @@
58
58
  },
59
59
  "module": "./index.esm.js",
60
60
  "main": "./index.cjs.js",
61
- "version": "2.0.0-beta.64"
61
+ "version": "2.0.0-beta.65"
62
62
  }