@akinon/next 2.0.69-beta.0 → 2.0.69

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,10 +1,10 @@
1
1
  # @akinon/next
2
2
 
3
- ## 2.0.69-beta.0
3
+ ## 2.0.69
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - cbbbfd75: ZERO-4376: Bootstrap beta cycle (next-main pre-release motor)
7
+ - 877f938: ZERO-4837: Enhance wishlist functionality and styling across components
8
8
 
9
9
  ## 2.0.68
10
10
 
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": "2.0.69-beta.0",
4
+ "version": "2.0.69",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -36,7 +36,7 @@
36
36
  "set-cookie-parser": "2.6.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@akinon/eslint-plugin-projectzero": "2.0.69-beta.0",
39
+ "@akinon/eslint-plugin-projectzero": "2.0.69",
40
40
  "@babel/core": "7.26.10",
41
41
  "@babel/preset-env": "7.26.9",
42
42
  "@babel/preset-typescript": "7.27.0",
package/with-pz-config.js CHANGED
@@ -5,7 +5,12 @@ const deepMerge = require('./utils/deep-merge');
5
5
  /** @type {import('next').NextConfig} */
6
6
  const defaultConfig = {
7
7
  reactStrictMode: true,
8
- transpilePackages: ['@akinon/next', '@akinon/pz-theme', '@akinon/theme-contract', ...pzPlugins.map((p) => `@akinon/${p}`)],
8
+ transpilePackages: [
9
+ '@akinon/next',
10
+ '@akinon/pz-theme',
11
+ '@akinon/theme-contract',
12
+ ...pzPlugins.map((p) => `@akinon/${p}`)
13
+ ],
9
14
  skipTrailingSlashRedirect: true,
10
15
  poweredByHeader: false,
11
16
  cacheMaxMemorySize: 0,
@@ -50,7 +55,7 @@ const defaultConfig = {
50
55
  {
51
56
  key: 'Content-Security-Policy',
52
57
  value:
53
- "frame-ancestors 'self' https://*.akifast.com akifast.com https://*.akinoncloud.com akinoncloud.com http://localhost:5174 localhost:5174"
58
+ "frame-ancestors 'self' https://*.akifast.com akifast.com https://*.akinoncloud.com akinoncloud.com https://*.akinon.net *.akinon.net http://localhost:5174 localhost:5174"
54
59
  }
55
60
  ]
56
61
  }