@vitnode/blog 1.2.0-canary.30 → 1.2.0-canary.32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitnode/blog",
3
- "version": "1.2.0-canary.30",
3
+ "version": "1.2.0-canary.32",
4
4
  "description": "Blog plugin for VitNode, providing a blogging platform with Next.js and Hono.js.",
5
5
  "author": "VitNode Team",
6
6
  "license": "MIT",
@@ -27,30 +27,30 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@hono/zod-openapi": "^0.19.8",
31
- "drizzle-kit": "^0.31.3",
30
+ "@hono/zod-openapi": "^0.19.9",
31
+ "drizzle-kit": "^0.31.4",
32
32
  "drizzle-orm": "^0.44.2",
33
- "hono": "^4.8.3",
34
- "lucide-react": "^0.523.0",
35
- "next": "^15.3.4",
36
- "next-intl": "^4.3.1",
37
- "react": "^19.1.0",
38
- "react-dom": "^19.1.0",
39
- "react-hook-form": "^7.58.1",
40
- "sonner": "^2.0.5",
41
- "zod": "^3.25.67",
42
- "@vitnode/core": "1.2.0-canary.30"
33
+ "hono": "^4.8.4",
34
+ "lucide-react": "^0.525.0",
35
+ "next": "^15.3.5",
36
+ "next-intl": "^4.3.4",
37
+ "react": "^19.1",
38
+ "react-dom": "^19.1",
39
+ "react-hook-form": "^7.60.0",
40
+ "sonner": "^2.0.6",
41
+ "zod": "^3.25.74",
42
+ "@vitnode/core": "1.2.0-canary.32"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@swc/cli": "0.6.0",
46
- "@swc/core": "^1.12.7",
47
- "@types/react": "^19.1.8",
48
- "@types/react-dom": "^19.1.6",
46
+ "@swc/core": "^1.12.9",
47
+ "@types/react": "^19.1",
48
+ "@types/react-dom": "^19.1",
49
49
  "concurrently": "^9.2.0",
50
- "eslint": "^9.29.0",
50
+ "eslint": "^9.30.1",
51
51
  "tsc-alias": "^1.8.16",
52
52
  "typescript": "^5.8.3",
53
- "@vitnode/eslint-config": "1.2.0-canary.30"
53
+ "@vitnode/eslint-config": "1.2.0-canary.32"
54
54
  },
55
55
  "scripts": {
56
56
  "build:plugins": "tsc && swc src -d dist --config-file .swcrc && tsc-alias -p tsconfig.json",
@@ -4,11 +4,12 @@ import { I18nProvider } from '@vitnode/core/components/i18n-provider';
4
4
  import { DataTableSkeleton } from '@vitnode/core/components/table/data-table';
5
5
  import { HeaderContent } from '@vitnode/core/components/ui/header-content';
6
6
  import { getTranslations } from 'next-intl/server';
7
+ import dynamic from 'next/dynamic';
7
8
  import React from 'react';
8
9
 
9
10
  import { ActionsCategoriesAdmin } from '@/views/admin/categories/actions/actions';
10
11
 
11
- const CategoriesAdminView = React.lazy(async () =>
12
+ const CategoriesAdminView = dynamic(async () =>
12
13
  import('@/views/admin/categories/table/categories-admin-view').then(mod => ({
13
14
  default: mod.CategoriesAdminView,
14
15
  })),
@@ -4,11 +4,12 @@ import { I18nProvider } from '@vitnode/core/components/i18n-provider';
4
4
  import { DataTableSkeleton } from '@vitnode/core/components/table/data-table';
5
5
  import { HeaderContent } from '@vitnode/core/components/ui/header-content';
6
6
  import { getTranslations } from 'next-intl/server';
7
+ import dynamic from 'next/dynamic';
7
8
  import React from 'react';
8
9
 
9
10
  import { ActionsPostsAdmin } from '@/views/admin/posts/actions/actions';
10
11
 
11
- const PostsAdminView = React.lazy(async () =>
12
+ const PostsAdminView = dynamic(async () =>
12
13
  import('@/views/admin/posts/table/posts-admin-view').then(mod => ({
13
14
  default: mod.PostsAdminView,
14
15
  })),