
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Appends package version (package.json) to static files: style.css => style-2.0.2.css
Appends package version (package.json) to static files: style.css => style-2.0.2.css
This plugin is a gulp-rev ripoff that appends file version instead of a hash.
$ npm install --save-dev gulp-ver
var gulp = require('gulp');
var ver = require('gulp-ver');
gulp.task('default', function () {
return gulp.src('src/*.css')
.pipe(ver())
.pipe(gulp.dest('dist'));
});
Type: String
Default: package.json
File name to get the version from, the file must be in JSON format.
Type: String
Default: version
Key name to use to retrieve the version from the file specified in options.file.
Type: String
Default: process.cwd()
The path where to look for the file specified in options.file.
Type: String or Array
Default: undefined
The version to append to assets. If this options is specified, all file related options (options.file, options.fileKey, options.filePath) are ignored.
Can be specified as string: 1.3.2 or as an array: ['1', '3', '2']
Type: String
Default: .
The separator to use when appending version to the file name. For example setting it to an empty string ('') with the version being 1.3.2 will output file-132.js.
Type: String or Array
Default: undefined
The prefix to prepend to the version, when specified as a string it gets prepended without a separator, for example options.prefix = 'v' will produce file-v1.3.2.js.
When specified as an array it uses options.separator to join the array, ie options.prefix = ['v'] will output file-v.1.3.2.js.
Type: String or Array
Default: undefined
The suffix to append to the version, it works pretty much as options.prefix does: options.suffix = 'alpha' will produce file-1.3.2alpha.js.
When specified as an array (say you want to add a build number): options.prefix = ['3422', 'min'] will output file-1.3.2.3422.min.js.
Original file paths are stored at file.revOrigPath. This is done to be compatible with everything that works with gulp-rev.
This plugin does not support streaming. If you have files from a streaming source, such as browserify, you should use gulp-buffer before gulp-ver in your pipeline:
var gulp = require('gulp');
var browserify = require('browserify');
var source = require('vinyl-source-stream');
var buffer = require('gulp-buffer');
var ver = require('gulp-ver');
gulp.task('default', function () {
return browserify('src/index.js')
.bundle({debug: true})
.pipe(source('index.min.js'))
.pipe(buffer())
.pipe(ver())
.pipe(gulp.dest('dist'))
});
MIT © Denis Bukharov
FAQs
Appends package version (package.json) to static files: style.css => style-2.0.2.css
We found that gulp-ver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.