webpack-compile-time-plugin
Version:
Simple plugin to write out the compilation time into the console
22 lines (14 loc) • 354 B
Markdown
A really simple plugin, with only one purpose. Show the compilation time in the console.
There is no options yet.
```javascript
const CompileTimePlugin = require('webpack-compile-time-plugin');
plugins: [
// ...
new CompileTimePlugin()
]
```
