create-kudzu 0.1.100 → 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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/index.mjs +3 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # create-kudzu
2
2
 
3
+ Requires Node.js 22 or newer.
4
+
3
5
  Create a Kudzu project:
4
6
 
5
7
  ```bash
package/index.mjs CHANGED
@@ -33,7 +33,7 @@ const files = {
33
33
  check: "tsc --noEmit && kudzu build"
34
34
  },
35
35
  dependencies: {
36
- "@kudzujs/core": "^0.8.14"
36
+ "@kudzujs/core": "^0.8.15"
37
37
  },
38
38
  devDependencies: {
39
39
  typescript: "^5.9.2"
@@ -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`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kudzu",
3
- "version": "0.1.100",
3
+ "version": "0.1.102",
4
4
  "description": "Create a Kudzu project",
5
5
  "type": "module",
6
6
  "license": "MIT",