1.2.0 • Published 4 years ago

@feizheng/html-banner-webpack-plugin v1.2.0

Weekly downloads
59
License
MIT
Repository
github
Last release
4 years ago

html-banner-webpack-plugin

Adds a banner to the top of each generated html.

installation

npm install -D @feizheng/html-banner-webpack-plugin

usage

import HtmlBannerWebpackPlugin from 'html-banner-webpack-plugin';

// ....
plutins:[
  new HtmlBannerWebpackPlugin({
    banner:[
      'NAME: editor-frontend',
      'VERSION: v1.1.5-alpha.6',
      'BUILD_TIME: 4/12/2019, 11:01:20 PM'
    ]
  })
]
// ...