create-nextspark-app 0.1.0-beta.158 → 0.1.0-beta.160
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/index.js +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -89,7 +89,12 @@ async function createProject(options) {
|
|
|
89
89
|
"next-intl",
|
|
90
90
|
"better-auth",
|
|
91
91
|
"@better-fetch/fetch",
|
|
92
|
-
"jiti"
|
|
92
|
+
"jiti",
|
|
93
|
+
// Imported directly by shipped app routes (devtools docs/tests + media upload).
|
|
94
|
+
// Must be direct project deps, not phantom-hoisted from @nextsparkjs/core,
|
|
95
|
+
// otherwise `next build` fails to resolve them under pnpm.
|
|
96
|
+
"gray-matter",
|
|
97
|
+
"@vercel/blob"
|
|
93
98
|
].join(" ");
|
|
94
99
|
execSync(`pnpm add ${essentialDeps}`, {
|
|
95
100
|
cwd: projectPath,
|