create-kudzu 0.1.101 → 0.1.102
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/index.mjs +2 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -221,6 +221,7 @@ This starter is a working Kudzu showcase, not an empty scaffold.
|
|
|
221
221
|
\`kudzu.config.mjs\` is optional. Add it only when the project needs a base path, external public directory, transformed source styles, global metadata, navigation groups, or post-build artifacts.
|
|
222
222
|
|
|
223
223
|
\`\`\`bash
|
|
224
|
+
npm install
|
|
224
225
|
npm run dev
|
|
225
226
|
npm run check
|
|
226
227
|
npm run build
|
|
@@ -239,4 +240,4 @@ if (!skipInstall) {
|
|
|
239
240
|
if (result.status !== 0) process.exit(result.status ?? 1)
|
|
240
241
|
}
|
|
241
242
|
|
|
242
|
-
console.log(`\nCreated ${name} in ${root}\n\n cd ${target}\n npm run dev\n`)
|
|
243
|
+
console.log(`\nCreated ${name} in ${root}${skipInstall ? "" : " with dependencies installed"}\n\n cd ${target}\n${skipInstall ? " npm install\n" : ""} npm run dev\n`)
|