rjs-build-hasher

0.7.2 • Public • Published

rjs-build-hasher Build Status

Calculates hashes of bundles generated by require.js. Supports renaming bundle files by given format, plus a few other options. Uses the peg parser used in rjs-build-analysis by Merrick Christensen.

Installation

npm install --save-dev rjs-build-hasher

Documentation

Default options

  • buildPath: js/build
  • format: {base}.{hash}{ext} - Format used for new name when renaming (or copying) built files.
  • rename: true
  • copy: false (overrides rename if true)
  • removeOld: true
  • hashSize: 8

Usage

Example: used with grunt-contrib-requirejs

grunt.initConfig({
    requirejs: {
        compile: {
            options: {
                done: function (done, output) {
                
                    var bundles = require('rjs-build-hasher')(output, {
                        buildPath: 'public/js'
                    });
                    
                    // save info about built files to configuration
                    grunt.file.write('config/built-modules.json', JSON.stringify(bundles, null, 2));
                    
                    done();
 

Contributing

Accepting pull requests. Will appreciate it if you add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

See commit history.

License

Copyright (c) 2015. Licensed under the MIT license.

/rjs-build-hasher/

    Package Sidebar

    Install

    npm i rjs-build-hasher

    Weekly Downloads

    11

    Version

    0.7.2

    License

    none

    Last publish

    Collaborators

    • monsendag