You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--dev-condition`| Custom condition name only used during dev | none |
27
28
|`--bail` / `-b`| Stop after the first error |`process.env.CI === 'true'`|
28
29
|`--no-bail`| Turn off `--bail`|`false`|
29
30
|`--info` / `-i`| Show `info` messages.<br>The default behavior is to only show `error`. |`process.env.RUNNER_DEBUG === '1'`|
@@ -59,6 +60,18 @@ OR
59
60
}
60
61
```
61
62
63
+
#### Dev Condition
64
+
65
+
If you use a [`customCondition` in your `tsconfig.json`](https://www.typescriptlang.org/tsconfig/#customConditions), like when using [Nx](https://nx.dev/docs/technologies/test-tools/vitest/guides/testing-without-building-dependencies#step-1-add-customconditions-to-tsconfigbasejson), you can use the `--dev-condition` flag so that those entry points are skipped when validating which files are packed.
0 commit comments