@koine/next 2.0.0-beta.85 → 2.0.0-beta.86

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/config.cjs.js CHANGED
@@ -5,6 +5,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var next = require('@koine/i18n/next');
6
6
 
7
7
  /**
8
+ * @legacy
9
+ *//**
8
10
  * Get Next.js config with some basic opinionated defaults
9
11
  *
10
12
  * @param {object} options
package/config.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import type { NextConfig } from "next";
2
2
  import { type WithI18nAsyncOptions, type WithI18nLegacyOptions } from "@koine/i18n/next";
3
+ export type Routes = NonNullable<WithI18nLegacyOptions["i18nRoutes"]>["routes"];
3
4
  export type WithKoineOptions = NextConfig & {
4
5
  nx?: boolean;
5
6
  svg?: boolean;
package/config.esm.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { withI18nLegacy, withI18nAsync, withI18n } from '@koine/i18n/next';
2
2
 
3
3
  /**
4
+ * @legacy
5
+ *//**
4
6
  * Get Next.js config with some basic opinionated defaults
5
7
  *
6
8
  * @param {object} options
package/package.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "@koine/next",
3
3
  "sideEffects": false,
4
4
  "dependencies": {
5
- "@koine/browser": "2.0.0-beta.85",
6
- "@koine/utils": "2.0.0-beta.85",
7
- "@koine/i18n": "2.0.0-beta.85"
5
+ "@koine/browser": "2.0.0-beta.86",
6
+ "@koine/utils": "2.0.0-beta.86",
7
+ "@koine/i18n": "2.0.0-beta.86"
8
8
  },
9
9
  "peerDependencies": {
10
10
  "next": "^14.0.4",
@@ -56,5 +56,5 @@
56
56
  },
57
57
  "module": "./index.esm.js",
58
58
  "main": "./index.cjs.js",
59
- "version": "2.0.0-beta.85"
59
+ "version": "2.0.0-beta.86"
60
60
  }