Skip to content

Commit 3222c87

Browse files
Add npm start alias for examples:start (#183)
Allows running `npm start` as a shorthand for `npm run examples:start`, providing a conventional entry point to launch the example servers. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent 9963d0f commit 3222c87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To run all examples together:
5757

5858
```bash
5959
npm install
60-
npm run examples:start
60+
npm start
6161
```
6262

6363
Then open http://localhost:8080/.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
],
3838
"scripts": {
3939
"postinstall": "node scripts/setup-bun.mjs || echo 'setup-bun.mjs failed or not available'",
40+
"start": "npm run examples:start",
4041
"generate:schemas": "tsx scripts/generate-schemas.ts && prettier --write \"src/generated/**/*\"",
4142
"build": "npm run generate:schemas && node scripts/run-bun.mjs build.bun.ts",
4243
"prepack": "npm run build",

0 commit comments

Comments
 (0)