1.0.5 • Published 7 years ago

unix-timestamp-webpack-plugin v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

unix-timestamp-webpack-plugin

npm version Build Status

Emits a file that contains a unix timestamp of your latest webpack build.

Works with webpack 3.1 and later

Install

npm install --save-dev unix-timestamp-webpack-plugin 

Configuration

// Inside your webpack configuration
var UnixTimestampPlugin = require('unix-timestamp-webpack-plugin');

module.exports = {
  plugins: [new UnixTimestampPlugin()]
};  

Options

OptionDefault
filePath./
fileName.build-timestamp

Example

new UnixTimestampPlugin({
    filePath: path.join(__dirname, 'app'),
    fileName: 'build-timestamp.txt'
})
1.0.5

7 years ago

1.0.4

7 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