0.0.6 • Published 9 years ago

git-sha-webpack-plugin v0.0.6

Weekly downloads
187
License
MIT
Repository
github
Last release
9 years ago

git-sha-webpack-plugin

Allows tagging a webpack bundle or chunk with the Git SHA of the latest commit affecting that bundle. Useful for when you want to use long-term caching of your bundles, but want to tie the hash to something real and traceable.

Usage

Install via npm:

npm install git-sha-webpack-plugin

And then require for use in webpack:

// in webpack.config.js (or similar)
var GitSHAPlugin = require('git-sha-webpack-plugin');

module.exports = {
  
  // your config values here

  output: {
    filename: '[chunkgitsha].js'
  },
  plugins: [
    new GitSHAPlugin({shaLength: 7})
  ]
}

Options

shaLength

Allows truncating the SHA to a specific character length. 7 by default.

0.0.6

9 years ago

0.0.6-pre

9 years ago

0.0.5

9 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago