### What version of Turborepo are you using? 1.2.16 ### What package manager are you using / does the bug impact? npm ### What operating system are you using? Mac ### Describe the Bug Can't pass arguments (that start with `-` or `--`) to the underlying command that `turbo` will run, when using `--filter`. ### Expected Behavior Running: ``` npm run test -- --filter=ui -- --passWithNoTests ``` **Expected** `turbo` to run: ``` npm run test -- --passWithNoTests ``` Only for `ui` package. In **reality**, `turbo` runs: ``` npm run test ``` Only for `ui` package. #### 👉 Created a [repo](https://github.com/ivolimasilva/turborepo-args-bug) to reproduce. ### To Reproduce Run a command with `--filter` and pass more options. Check **Expected behavior** and the [repo](https://github.com/ivolimasilva/turborepo-args-bug) I've created to easily reproduce the issue.