Skip to content

Commit

Permalink
Polish docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jun 7, 2020
1 parent b5a2189 commit 6a0627e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/01-command-line-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default { // can be an array (for multiple inputs)
skipWrite,
exclude,
include
} | boolean
} | false
};
```

Expand Down
18 changes: 9 additions & 9 deletions docs/999-big-list-of-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1279,8 +1279,8 @@ For each key, the first number represents the elapsed time while the second repr

### Watch options

Type: `boolean | object`<br>
Default: `true`<br>
Type: `{ buildDelay?: number, chokidar?: ChokidarOptions, clearScreen?: boolean, exclude?: string, include?: string, skipWrite?: boolean } | false`<br>
Default: `{}`<br>

Specify options for watch mode or prevent this configuration from being watched. Specifying `false` is only really useful when an array of configurations is used. In that case, this configuration will not be built or rebuilt on change in watch mode, but it will be built when running Rollup regularly:

Expand Down Expand Up @@ -1320,13 +1320,6 @@ Default: `true`

Whether to clear the screen when a rebuild is triggered.

#### watch.skipWrite
Type: `boolean`<br>
CLI: `--watch.skipWrite`/`--no-watch.skipWrite`<br>
Default: `false`

Whether to skip the `bundle.write()` step when a rebuild is triggered.

#### watch.exclude
Type: `string`<br>
CLI: `--watch.exclude <files>`
Expand Down Expand Up @@ -1359,6 +1352,13 @@ export default {
};
```

#### watch.skipWrite
Type: `boolean`<br>
CLI: `--watch.skipWrite`/`--no-watch.skipWrite`<br>
Default: `false`

Whether to skip the `bundle.write()` step when a rebuild is triggered.

### Deprecated options

☢️ These options have been deprecated and may be removed in a future Rollup version.
Expand Down

0 comments on commit 6a0627e

Please sign in to comment.