diff options
author | 2021-10-26 16:58:57 -0700 | |
---|---|---|
committer | 2021-10-26 16:58:57 -0700 | |
commit | 933378ab80e2893bf143fcc2b600032030461368 (patch) | |
tree | 51edc07e513223e907c2bf4295247ee3bb2a2671 | |
parent | bd51d194cf2a21df13152af6890a116a9f30173a (diff) | |
download | bun-933378ab80e2893bf143fcc2b600032030461368.tar.gz bun-933378ab80e2893bf143fcc2b600032030461368.tar.zst bun-933378ab80e2893bf143fcc2b600032030461368.zip |
Update README.md
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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` |