1.0.5 • Published 5 years ago

unix-timestamp-webpack-plugin v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago