Skip to content

jamieconnor/create-hash-file-webpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create hash file plugin for WebPack

License: MIT

A webpack plugin to create a file with the hash.

[hash] will be replaced by the compilation hash

Inspired by [create-file-webpack]https://github.com/Appius/create-file-webpack

Installation

npm i create-hash-file-webpack --save-dev

Usage

const CreateHashFileWebpack = require('create-hash-file-webpack')

// webpack config
{
  plugins: [
    new CreateHashFileWebpack([
    {
        // path to folder in which the file will be created
        path: './dist',
        // file name
        fileName: 'index.js',
        // content of the file
        content: 'the compilation hash is [hash]'
    },
    {
        // path to folder in which the file will be created
        path: './dist',
        // file name
        fileName: 'scripts.html',
        // content of the file
        content: '<script src="/js/bundle.[hash].js"></script>'
    }])
  ]
}

About

A webpack plugin to create a file with the hash in it

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published