1.1.0 • Published 4 years ago

rollup-plugin-add-git-msg v1.1.0

Weekly downloads
8
License
ISC
Repository
github
Last release
4 years ago

Rollup plugin add git msg

Will add a comment to the start of the transpiled code.

A standard Comment Header contains:

  • Current repo name from package.json and last git commit / git tag from git command.
  • The copyright of the repo.
  • Date of compiled time.

Example header:

/*!
 * ${rollup-plugin-add-git-msg} v1.0-${126f2767e370ed3593ad8d7b9e3b924d54515b24}
 *
 * Copyright 2017 by oplinjie
 *
 * Date: 2017-05-15
*/

Installation

$ npm install --save-dev rollup-plugin-add-git-msg

Uasge

Add plugin to your rollup configuration:

import addGitMsg from 'rollup-plugin-add-git-msg';

module.exports = {
  plugins: [
    addGitMsg({ 'copyright': 'oplinjie' })
  ]
}

Plugin Options

  • showDate Default value: true
  • showTag Default value: true
  • showCommitID Default value: true
  • copyright Default value: null

License

MIT License (MIT)

1.1.0

4 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago