Giter Club home page Giter Club logo

grunt-require-rev's Introduction

grunt-require-rev

File revisioning for RequireJS dependencies. This can be useful for caching and cache-busting with RequireJS.

Getting Started

This plugin requires Grunt ~0.4.2

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-require-rev --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-require-rev');

The "requireRev" task

Overview

In your project's Gruntfile, add a section named requireRev to the data object passed into grunt.initConfig().

grunt.initConfig({
  requireRev: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

hash.algorithm

Type: String Default value: 'md5'

Hashing algorithm for file revisioning.

algorithm is dependent on the available algorithms supported by the version of OpenSSL on the platform. Examples are 'sha1', 'md5', 'sha256', 'sha512', etc. On recent releases, openssl list-message-digest-algorithms will display the available digest algorithms.

hash.inputEncoding

Type: String Default value: 'utf8'

The encoding of intput file contents.

hash.length

Type: Number Default value: 8

A number of hash prefix length.

paths

Type: Objects Default value: '{ scripts: '' }'

Related file and dependency path base. (key: file path base, value: requirejs dependency path base)

Usage Examples

Default Options

Revisioning all target js files and replace dependency paths.

grunt.initConfig({
  requireRev: {
    expand: true,
    cwd: 'dist',
    src: [
      'scripts/**/*.js'
    ]
  },
});

Before:

+- dist
|   +- scripts
|       +- bootstrap.js
|       +- app.js
|       +- routes.js
|       +- controllers
|          +- main.js
|          +- top.js
|          +- apps.js
|          +- about.js
|       +- services
|          +- facebook.js
|          +- twitter.js
/* bootstrap.js */
require([
    'angular', 
    'app', 
    'routes', 
    'controllers/main',
  ],
  function(requireCss, angular, app) {
    angular.bootstrap(document, [app.name]);
  }
);

/* routes.js */
var routes = {
  '/': {
    templateUrl: 'views/top.html',
    dependencies: [
      'controllers/top'
    ]
  }
}

angular.forEach(routes, function(route, path) {
  if(route == '/about') {
    route.dependencies.push('services/twitter');
    route.dependencies.push('services/facebook');
  }
});

/* controllers/main.js */
define(['app'], function(app) {
  
  app.controller('MainCtrl', [
    '$scope',
    '$location',
    function($scope, $location) {
    
      $scope.getNewFeeds = function() {
        switch($scope.selectedSNSType) {
          case 'facebook':
            require('services/facebook', function(facebook){
              $scope.feeds = facebook.getNewFeeds();
            });
            break;
          case 'twitter':
            require('services/twitter', function(twitter){
              $scope.feeds = twitter.getNewFeeds();
            });
            break;
        }
      }
      
    }
  ]);
  
});

After:

+- dist
|   +- scripts
|       +- bd7daeb5.bootstrap.js
|       +- 8fb5d34c.app.js
|       +- 4573763f.routes.js
|       +- controllers
|          +- 5daa89c5.main.js
|          +- 19a19e3f.top.js
|          +- a6d5958b.apps.js
|          +- 198131df.about.js
|       +- services
|          +- 86949311.facebook.js
|          +- d3dc6308.twitter.js
/* bd7daeb5.bootstrap.js */
require([
    'angular', 
    '8fb5d34c.app', 
    '4573763f.routes', 
    'controllers/5daa89c5.main',
  ],
  function(requireCss, angular, app) {
    angular.bootstrap(document, [app.name]);
  }
);

/* 4573763f.routes.js */
var routes = {
  '/': {
    templateUrl: 'views/top.html',
    dependencies: [
      'controllers/19a19e3f.top'
    ]
  }
}

angular.forEach(routes, function(route, path) {
  if(route == '/about') {
    route.dependencies.push('services/86949311.facebook');
    route.dependencies.push('services/d3dc6308.twitter');
  }
});

/* controllers/5daa89c5.main.js */
define(['8fb5d34c.app'], function(app) {
  
  app.controller('MainCtrl', [
    '$scope',
    '$location',
    function($scope, $location) {
    
      $scope.getNewFeeds = function() {
        switch($scope.selectedSNSType) {
          case 'facebook':
            require('services/86949311.facebook', function(facebook){
              $scope.feeds = facebook.getNewFeeds();
            });
            break;
          case 'twitter':
            require('services/d3dc6308.twitter', function(twitter){
              $scope.feeds = twitter.getNewFeeds();
            });
            break;
        }
      }
      
    }
  ]);
  
});

Custom Options

Revisioning all target js/css files and replace dependency paths.

grunt.initConfig({
  requireRev: {
    options: {
      hash: {
        algorithm: 'sha1',
        length: 16
      },
      paths: {
        styles: 'css!/styles/' // for requireCSS
      }
    },
    expand: true,
    cwd: 'dist',
    src: [
      'scripts/**/*.js',
      'styles/**/*.css'
    ]
  },
});

Before:

+- dist
|   +- scripts
|       +- bootstrap.js
|       +- app.js
|       +- routes.js
|       +- controllers
|          +- main.js
|          +- top.js
|          +- apps.js
|          +- about.js
|       +- services
|          +- facebook.js
|          +- twitter.js
|   +- styles
|       +- main.css
|       +- top.css
|       +- apps.css
|       +- about.css
/* routes.js */
var routes = {
  '/': {
    templateUrl: 'views/top.html',
    dependencies: [
      'controllers/top',
      'css!/styles/top'
    ]
  },
  '/apps': {
    templateUrl: 'views/apps.html',
    dependencies: [
      'controllers/apps',
      'css!/styles/apps'
    ]
  },
  '/about': {
    templateUrl: 'views/about.html',
    dependencies: [
      'controllers/about',
      'css!/styles/about'
    ]
  }
};

After:

+- dist
|   +- scripts
|       +- d60a58b6c4f45880.bootstrap.js
|       +- dd9943b7d47d8d43.app.js
|       +- 6a27ce6da391c09a.routes.js
|       +- controllers
|          +- 048b941d60f40cf2.main.js
|          +- 3bcc90986fef773c.top.js
|          +- 70efea67afb45e44.apps.js
|          +- b8886e5b28451e67.about.js
|       +- services
|          +- 07a6fb8f3f3d6b18.facebook.js
|          +- c447922719bf0856.twitter.js
|   +- styles
|       +- 5ceb948efe08c8b4.main.css
|       +- 257aba98c603815c.top.css
|       +- e9c25cf627836979.apps.css
|       +- ceab9a0c62514c28.about.css
/* 6a27ce6da391c09a.routes.js */
var routes = {
  '/': {
    templateUrl: 'views/top.html',
    dependencies: [
      'controllers/3bcc90986fef773c.top',
      'css!/styles/257aba98c603815c.top'
    ]
  },
  '/apps': {
    templateUrl: 'views/apps.html',
    dependencies: [
      'controllers/70efea67afb45e44.apps',
      'css!/styles/e9c25cf627836979.apps'
    ]
  },
  '/about': {
    templateUrl: 'views/about.html',
    dependencies: [
      'controllers/b8886e5b28451e67.about',
      'css!/styles/ceab9a0c62514c28.about'
    ]
  }
};

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2016-1-11   v0.1.3   Update dependency path pattern.
  • 2014-6-12   v0.1.2   Update dependency path pattern.
  • 2014-5-29   v0.1.1   Update dependency sorting algorithm.
  • 2014-5-20   v0.1.0   Initial release.

grunt-require-rev's People

Contributors

heavymery avatar

Watchers

James Cloos avatar Jeff William avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.