This website requires JavaScript.
Explore
Help
Sign In
root
/
webpack
mirror of
https://github.com/webpack/webpack.git
Watch
1
Star
0
Fork
You've already forked webpack
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
d249016aba
webpack
/
test
/
statsCases
/
preset-errors-only-error
/
webpack.config.js
5 lines
63 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Add stats config presets. `stats.toJson` and `stats.toString` now accept string/boolean values: `none` (or false), `errors-only`, `minimal`, `normal` (or true), `verbose`. A new static function was added: `Stats.presetToOptions(name)`, returns the options object from a preset name.
2015-08-03 17:01:29 +08:00
module
.
exports
=
{
entry
:
"./index"
,
stats
:
"errors-only"
code linting
2017-01-11 17:51:58 +08:00
}
;