@@ -180,21 +180,6 @@ Options for formatting statistics displayed during and after compile. For more
180
180
information and property details, please see the
181
181
[ webpack documentation] ( https://webpack.js.org/configuration/stats/#stats ) .
182
182
183
- ### watchOffset
184
-
185
- Type: ` Number `
186
- Default: ` 11000 `
187
-
188
- Watching (by means of ` lazy: false ` ) will frequently cause multiple compilations
189
- as the bundle changes during compilation. This is due in part to cross-platform
190
- differences in file watchers, so that webpack doesn't loose file changes when
191
- watched files change rapidly. Since that scenario is more an edge case than not,
192
- this option serves as a means to prevent multiple needless, identical compilations
193
- by advancing start-time of a watcher by a number of seconds, which keeps generated
194
- files from triggering the watch cycle.
195
-
196
- _ To disable this prevention, set this option to a value of ` 0 ` ._
197
-
198
183
### watchOptions
199
184
200
185
Type: ` Object `
@@ -270,6 +255,15 @@ instance.waitUntilValid(() => {
270
255
console .log (' Package is in a valid state' );
271
256
});
272
257
```
258
+ ## Known Issues
259
+
260
+ ### Multiple Successive Builds
261
+
262
+ Watching (by means of ` lazy: false ` ) will frequently cause multiple compilations
263
+ as the bundle changes during compilation. This is due in part to cross-platform
264
+ differences in file watchers, so that webpack doesn't loose file changes when
265
+ watched files change rapidly. If you run into this situation, please make use of
266
+ the [ ` TimeFixPlugin ` ] ( https://github.com/egoist/time-fix-plugin ) .
273
267
274
268
## Server-Side Rendering
275
269
@@ -405,4 +399,4 @@ We welcome your contributions! Please have a read of [CONTRIBUTING.md](CONTRIBUT
405
399
[middleware-url]: https://github.com/webpack/webpack-dev-middleware
406
400
[stack-url]: https://stackoverflow.com/questions/tagged/webpack-dev-middleware
407
401
[uglify-url]: https://github.com/webpack-contrib/uglifyjs-webpack-plugin
408
- [wjo-url]: https://github.com/webpack/webpack.js.org
402
+ [wjo-url]: https://github.com/webpack/webpack.js.org
0 commit comments