diff options
author | 2023-03-11 15:13:00 +0700 | |
---|---|---|
committer | 2023-03-11 00:13:00 -0800 | |
commit | a4fdc1e0d50b7cf2eda3797242f38510085689a0 (patch) | |
tree | 6e83972430a7461a515c85d8da98cb15c2db3519 /docs/quickstart.md | |
parent | cc7d2cf34388ca03a0b1b711347c3ebd36baf7a5 (diff) | |
download | bun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.tar.gz bun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.tar.zst bun-a4fdc1e0d50b7cf2eda3797242f38510085689a0.zip |
removed JSON trailing comma (#2364)
Diffstat (limited to 'docs/quickstart.md')
-rw-r--r-- | docs/quickstart.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md index 8cba2a17f..1a5aa657c 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -61,7 +61,7 @@ Bun can also execute `"scripts"` from your `package.json`. Add the following scr "module": "index.ts", "type": "module", + "scripts": { -+ "start": "bun run index.ts", ++ "start": "bun run index.ts" + }, "devDependencies": { "bun-types": "^0.4.0" |