All Projects → webpro → versionify

webpro / versionify

Licence: other
Browserify transform to replace placeholder with package version

Programming Languages

javascript
184084 projects - #8 most used programming language

browserify-versionify

Browserify transform to replace placeholder with package version.

By default, it replaces __VERSION__ with the version from package.json in your source code. E.g. before:

var version = '__VERSION__';

after:

var version = '1.0.0';

Usage

From command line:

browserify -t browserify-versionify

From Node.js:

browserify().transform('browserify-versionify');

// Configure (default values shown)
browserify().transform('browserify-versionify', {
    placeholder: '__VERSION__',
    version: pkg.version
});

You can also provide a filter property to whitelist files to apply the transform to (e.g. filter: /\.js$/).

You can also add the transform to your package.json:

{
    "browserify": {
        "transform": [
            "browserify-versionify"
        ]
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].