aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index ebcb9822f..2f81b03b1 100644
--- a/README.md
+++ b/README.md
@@ -218,6 +218,9 @@ Currently, Bun implements the following loaders:
| .ts | TypeScript + JavaScript | .js |
| .tsx | TypeScript + JSX + JavaScript | .js |
| .mjs | JavaScript | .js |
+| .cjs | JavaScript | .js |
+| .mts | TypeScript | .js |
+| .cts | TypeScript | .js |
| .css | CSS | .css |
| .env | Env | N/A |
| .\* | file | string |
@@ -539,7 +542,7 @@ bun run relay-compiler -- -–help
# Implicit: if you do not include "--", anything *after* the script name will be passed through
# Bun flags are parsed first, which means e.g. `bun run relay-compiler --help` will print Bun's help instead of relay-compiler's help.
-bun run relay-compiler
+bun run relay-compiler --schema foo.graphql
```
### `bun create`