create-kdna-web-app 0.3.0 → 0.3.1
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": "create-kdna-web-app",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Scaffold a KDNA-integrated web application with Next.js App Router, Next.js Pages Router, or Express templates.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -17,8 +17,9 @@
|
|
|
17
17
|
"SECURITY.md"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
-
"ci": "npm test && npm run lint && npm pack --dry-run --json",
|
|
20
|
+
"ci": "npm test && npm run test:templates && npm run lint && npm pack --dry-run --json",
|
|
21
21
|
"test": "node --test tests/scaffold.test.js",
|
|
22
|
+
"test:templates": "node scripts/test-templates.js",
|
|
22
23
|
"lint": "node scripts/lint.js",
|
|
23
24
|
"prepublishOnly": "npm run ci"
|
|
24
25
|
},
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const nextConfig = {
|
|
2
|
+
// KDNA Core loads packaged runtime schemas with Node.js file APIs. Keep it
|
|
3
|
+
// outside the Turbopack server bundle so App Router production builds use
|
|
4
|
+
// the package exactly as they do at runtime.
|
|
5
|
+
serverExternalPackages: ['@aikdna/kdna-core'],
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export default nextConfig
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"test": "node scripts/smoke.mjs"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aikdna/kdna-core": "0.
|
|
12
|
+
"@aikdna/kdna-core": "0.17.0",
|
|
13
13
|
"@aikdna/kdna-react": "0.2.0",
|
|
14
|
-
"@aikdna/kdna-web-server": "0.2.
|
|
14
|
+
"@aikdna/kdna-web-server": "0.2.3",
|
|
15
15
|
"next": "^16.2.10",
|
|
16
16
|
"react": "^19.2.7",
|
|
17
17
|
"react-dom": "^19.2.7"
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"test": "node scripts/smoke.mjs"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aikdna/kdna-core": "0.
|
|
12
|
+
"@aikdna/kdna-core": "0.17.0",
|
|
13
13
|
"@aikdna/kdna-react": "0.2.0",
|
|
14
|
-
"@aikdna/kdna-web-server": "0.2.
|
|
14
|
+
"@aikdna/kdna-web-server": "0.2.3",
|
|
15
15
|
"next": "^16.2.10",
|
|
16
16
|
"react": "^19.2.7",
|
|
17
17
|
"react-dom": "^19.2.7"
|