diff options
Diffstat (limited to 'docs/cli')
-rw-r--r-- | docs/cli/create.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cli/create.md b/docs/cli/create.md index 54595a6fe..a6dc90c2c 100644 --- a/docs/cli/create.md +++ b/docs/cli/create.md @@ -129,7 +129,7 @@ Each of these can correspond to a string or array of strings. An array of comman "react-dom": "^17.0.2" }, "bun-create": { - "postinstall": "echo 'Installing...'", // a single command + "preinstall": "echo 'Installing...'", // a single command "postinstall": ["echo 'Done!'"], // an array of commands "start": "bun run echo 'Hello world!'" } |