npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-ver

v0.1.0

Published

Appends package version (package.json) to static files: style.css => style-2.0.2.css

Downloads

472

Readme

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.

Install

$ npm install --save-dev gulp-ver

Usage

var gulp = require('gulp');
var ver = require('gulp-ver');

gulp.task('default', function () {
  return gulp.src('src/*.css')
    .pipe(ver())
    .pipe(gulp.dest('dist'));
});

Options

options.file

Type: String

Default: package.json

File name to get the version from, the file must be in JSON format.

options.fileKey

Type: String

Default: version

Key name to use to retrieve the version from the file specified in options.file.

options.filePath

Type: String

Default: process.cwd()

The path where to look for the file specified in options.file.

options.version

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']

options.separator

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.

options.prefix

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.

options.suffix

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 path

Original file paths are stored at file.revOrigPath. This is done to be compatible with everything that works with gulp-rev.

Streaming

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'))
});

Works with gulp-ver

License

MIT © Denis Bukharov