Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmitrytarassov/print-date-webpack-plugin
Plugin can print date before and after bundle info, also can print some lines before compilation started.
https://github.com/dmitrytarassov/print-date-webpack-plugin
webpack webpack-lines webpack-plugin
Last synced: about 1 month ago
JSON representation
Plugin can print date before and after bundle info, also can print some lines before compilation started.
- Host: GitHub
- URL: https://github.com/dmitrytarassov/print-date-webpack-plugin
- Owner: dmitrytarassov
- License: mit
- Created: 2017-11-24T20:45:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-12T09:56:02.000Z (about 7 years ago)
- Last Synced: 2024-08-10T10:28:04.986Z (5 months ago)
- Topics: webpack, webpack-lines, webpack-plugin
- Language: TypeScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# print-date-webpack-plugin
Plugin can print date before and after bundle info, also can print some lines before compilation started.
## Install
``` bash
npm i print-date-webpack-plugin --save-dev
```## Usage
``` javascript
const printDate = require('print-date-webpack-plugin');module.exports = {
plugins: [
new printDate(options)
]
};
```## Options
``` javascript
let options = {
lines // default: 0, quantity to lines to print before compilation
print_begin // default: false, print start time
print_end // default: true, print end time
}
```