diff --git a/.vscode/launch.json b/.vscode/launch.json index 862c583a5b..c5da977885 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,7 @@ "request": "launch", "name": "bun test [file]", "program": "bun-debug", - "args": ["test", "${file}"], + "args": ["create", "--help"], // The cwd here must be the same as in CI. Or you will cause test failures that only happen in CI. "cwd": "${workspaceFolder}/test", "env": { diff --git a/bench/expect-to-equal/README.md b/bench/expect-to-equal/README.md index d9023f4a73..3e7e3594b7 100644 --- a/bench/expect-to-equal/README.md +++ b/bench/expect-to-equal/README.md @@ -10,7 +10,7 @@ To run in Bun: ```bash # so it doesn't run the vitest one -bun wiptest expect-to-equal.test.js +bun test expect-to-equal.test.js ``` To run in Jest: diff --git a/docs/bundler/executables.md b/docs/bundler/executables.md index 081d570500..b654ec8102 100644 --- a/docs/bundler/executables.md +++ b/docs/bundler/executables.md @@ -28,7 +28,7 @@ All imported files and packages are bundled into the executable, along with a co - `--outdir` β€” use `outfile` instead. - `--external` - `--splitting` -- `--publicPath` +- `--public-path` {% /callout %} diff --git a/docs/bundler/index.md b/docs/bundler/index.md index bfbed2077c..585a6ac52a 100644 --- a/docs/bundler/index.md +++ b/docs/bundler/index.md @@ -960,7 +960,7 @@ By specifying `.` as `root`, the generated file structure will look like this: A prefix to be appended to any import paths in bundled code. - + In many cases, generated bundles will contain no `import` statements. After all, the goal of bundling is to combine all of the code into a single file. However there are a number of cases with the generated bundles will contain `import` statements. diff --git a/docs/runtime/nodejs-apis.md b/docs/runtime/nodejs-apis.md index 1dc0c04b69..2bdc1fe507 100644 --- a/docs/runtime/nodejs-apis.md +++ b/docs/runtime/nodejs-apis.md @@ -18,7 +18,7 @@ This page is updated regularly to reflect compatibility status of the latest ver ### [`node:child_process`](https://nodejs.org/api/child_process.html) -🟑 Missing IPC, `Stream` stdio, `proc.gid`, `proc.uid`, advanced serialization. +🟑 Missing `Stream` stdio, `proc.gid`, `proc.uid`. IPC has partial support and only current only works with other `bun` processes. ### [`node:cluster`](https://nodejs.org/api/cluster.html) @@ -26,7 +26,7 @@ This page is updated regularly to reflect compatibility status of the latest ver ### [`node:console`](https://nodejs.org/api/console.html) -🟒 Recommended to use `console` global instead +🟑 Missing `Console` constructor. ### [`node:crypto`](https://nodejs.org/api/crypto.html) @@ -146,7 +146,7 @@ This page is updated regularly to reflect compatibility status of the latest ver ### [`node:util`](https://nodejs.org/api/util.html) -🟑 Missing `util.MIMEParams` `util.MIMEType` `util.formatWithOptions()` `util.getSystemErrorMap()` `util.getSystemErrorName()` `util.parseArgs()` `util.stripVTControlCharacters()` `util.transferableAbortController()` `util.transferableAbortSignal()`. +🟑 Missing `util.MIMEParams` `util.MIMEType` `util.getSystemErrorMap()` `util.getSystemErrorName()` `util.parseArgs()` `util.stripVTControlCharacters()` `util.transferableAbortController()` `util.transferableAbortSignal()`. ### [`node:v8`](https://nodejs.org/api/v8.html) @@ -166,7 +166,7 @@ This page is updated regularly to reflect compatibility status of the latest ver ### [`node:zlib`](https://nodejs.org/api/zlib.html) -🟑 Missing `zlib.brotli*`. Some methods are not optimized. +🟑 Missing `zlib.brotli*`. Has not been optimized.