@akinon/next 1.21.0-rc.4 → 1.21.0-rc.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.21.0-rc.5
4
+
5
+ ### Patch Changes
6
+
7
+ - ZERO-2296: Fix ROUTES import
8
+
3
9
  ## 1.21.0-rc.4
4
10
 
5
11
  ### Minor Changes
@@ -1,5 +1,6 @@
1
1
  import { NextFetchEvent, NextMiddleware, NextResponse } from 'next/server';
2
2
  import Settings from 'settings';
3
+ import { ROUTES } from 'routes';
3
4
  import {
4
5
  PzNextRequest,
5
6
  withCheckoutProvider,
@@ -17,7 +18,6 @@ import withLocale from './locale';
17
18
  import logger from '../utils/log';
18
19
  import { user } from '../data/urls';
19
20
  import { getUrlPathWithLocale } from '../utils/localization';
20
- import { ROUTES } from 'projectzeronext/src/routes';
21
21
 
22
22
  const withPzDefault =
23
23
  (middleware: NextMiddleware) =>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.21.0-rc.4",
4
+ "version": "1.21.0-rc.5",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -32,7 +32,7 @@
32
32
  "@typescript-eslint/eslint-plugin": "6.7.4",
33
33
  "@typescript-eslint/parser": "6.7.4",
34
34
  "eslint": "^8.14.0",
35
- "@akinon/eslint-plugin-projectzero": "1.21.0-rc.4",
35
+ "@akinon/eslint-plugin-projectzero": "1.21.0-rc.5",
36
36
  "eslint-config-prettier": "8.5.0"
37
37
  }
38
38
  }