@nextsparkjs/core 0.1.0-beta.163 → 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.
package/dist/styles/classes.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextsparkjs/core",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
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.
|
|
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
|
-
|
|
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
|
},
|