@nextsparkjs/core 0.1.0-beta.164 → 0.1.0-beta.166

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-06-10T14:35:36.191Z",
2
+ "generated": "2026-06-10T14:55:15.602Z",
3
3
  "totalClasses": 1081,
4
4
  "classes": [
5
5
  "!text-2xl",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/core",
3
- "version": "0.1.0-beta.164",
3
+ "version": "0.1.0-beta.166",
4
4
  "description": "NextSpark - The complete SaaS framework for Next.js",
5
5
  "license": "MIT",
6
6
  "author": "NextSpark <hello@nextspark.dev>",
@@ -469,7 +469,7 @@
469
469
  "tailwind-merge": "^3.3.1",
470
470
  "uuid": "^13.0.0",
471
471
  "zod": "^4.1.5",
472
- "@nextsparkjs/testing": "0.1.0-beta.164"
472
+ "@nextsparkjs/testing": "0.1.0-beta.166"
473
473
  },
474
474
  "scripts": {
475
475
  "postinstall": "node scripts/postinstall.mjs || true",
@@ -16,7 +16,10 @@ const nextConfig = {
16
16
  ignoreBuildErrors: true,
17
17
  },
18
18
  transpilePackages: ['@nextsparkjs/core'],
19
- serverExternalPackages: ['handlebars'],
19
+ // Server-only packages that must NOT be bundled (they use Node built-ins like
20
+ // async_hooks). e.g. the AI plugin's @anthropic-ai/claude-agent-sdk. Listing
21
+ // a package here is harmless when it isn't installed.
22
+ serverExternalPackages: ['handlebars', '@anthropic-ai/claude-agent-sdk'],
20
23
  turbopack: {
21
24
  root: __dirname,
22
25
  },