Skip to content

Commit 8b5433f

Browse files
committed
docs(plugin-coverage): fix option type
1 parent e4611f6 commit 8b5433f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/create-cli/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ Each plugin exposes its own configuration keys that can be passed as CLI argumen
3939

4040
#### Coverage
4141

42-
| Option | Type | Default | Description |
43-
| ------------------------------- | -------------------------------------- | -------------------- | ------------------------------ |
44-
| **`--coverage.framework`** | `'jest'` \| `'vitest'` \| `'other'` | auto-detected | Test framework |
45-
| **`--coverage.configFile`** | `string` | auto-detected | Path to test config file |
46-
| **`--coverage.reportPath`** | `string` | `coverage/lcov.info` | Path to LCOV report file |
47-
| **`--coverage.testCommand`** | `string` | auto-detected | Command to run tests |
48-
| **`--coverage.types`** | `'function'` \| `'branch'` \| `'line'` | all | Coverage types to measure |
49-
| **`--coverage.continueOnFail`** | `boolean` | `true` | Continue if test command fails |
50-
| **`--coverage.categories`** | `boolean` | `true` | Add code coverage category |
42+
| Option | Type | Default | Description |
43+
| ------------------------------- | ------------------------------------------ | -------------------- | ------------------------------ |
44+
| **`--coverage.framework`** | `'jest'` \| `'vitest'` \| `'other'` | auto-detected | Test framework |
45+
| **`--coverage.configFile`** | `string` | auto-detected | Path to test config file |
46+
| **`--coverage.reportPath`** | `string` | `coverage/lcov.info` | Path to LCOV report file |
47+
| **`--coverage.testCommand`** | `string` | auto-detected | Command to run tests |
48+
| **`--coverage.types`** | `('function'` \| `'branch'` \| `'line')[]` | all | Coverage types to measure |
49+
| **`--coverage.continueOnFail`** | `boolean` | `true` | Continue if test command fails |
50+
| **`--coverage.categories`** | `boolean` | `true` | Add code coverage category |
5151

5252
### Examples
5353

0 commit comments

Comments
 (0)