项目作者: bndynet

项目描述 :
:copyright: A Webpack plugin for injecting comment header (like version or copyright) to html, js and css files
高级语言: JavaScript
项目地址: git://github.com/bndynet/header-injection-webpack-plugin.git
创建时间: 2018-12-07T10:45:21Z
项目社区:https://github.com/bndynet/header-injection-webpack-plugin

开源协议:

下载


header-injection-webpack-plugin (Webpack 4.x)

A webpack plugin to inject header you specified into text files(js, css, html).

Installation

  1. npm i @bndynet/header-injection-webpack-plugin --save-dev

Usage

  1. const HeaderInjectionWebpackPlugin = require('@bndynet/header-injection-webpack-plugin');
  2. // webpack config
  3. {
  4. plugins: [
  5. new HeaderInjectionWebpackPlugin()
  6. ]
  7. }

Options defalut value

  1. {
  2. package: './package.json',
  3. extensions: ['.js', '.css', '.html'],
  4. header: 'By default, includes name, version in your package.json and built time',
  5. }

Example:

  1. const HeaderInjectionWebpackPlugin = require('@bndynet/header-injection-webpack-plugin');
  2. const app = require('./package.json');
  3. new HeaderInjectionWebpackPlugin({
  4. header: `${app.name} v${app.version} by ${app.author}`
  5. })

Console Log:

  1. hiw」: Injecting header for .html,.css,.js files ...
  2. hiw」: Injecting header for main.79aa05215e152932a87d.js: /*! [hiw] header-injection-webpack-plugin / 1.0.0 / 2018-12-02T09:18:53.917Z */
  3. hiw」: Injecting header for index.html: <!-- [hiw] header-injection-webpack-plugin / 1.0.0 / 2018-12-02T09:18:53.917Z -->
  4. hiw」: 2 file(s) done