gulp-build-date
v0.0.9
Published
Populates the build date and bower.json version into a json file, used to output information on web page
Downloads
6
Readme
Gulp Build Date
Populates the build date and version from bower.json into a json file, used to output information on web page.
Basic Example
var buildDate = require('gulp-build-date');
gulp.task('build-website', function () {
return gulp.src(['app/js/**/*.js'])
.pipe(buildDate({
bowerJson: './bower.json'
}))
.pipe(gulp.dest('/output'))
});