0.2.2 • Published 9 years ago

grunt-static-revision v0.2.2

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

grunt-static-revision

Create *.json for the static file asset and revisioning through content hashing.

Getting Started

This plugin requires Grunt ~0.4.5

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-static-revision --save-dev

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

grunt.loadNpmTasks('grunt-static-revision');

The "static-revision" task

Overview

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

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

Options

options.src

Type: String

The project source directory

options.dist

Type: String

The project dist directory

options.configFile

Type: String

Default value: static-revision.json

The configuration file name

options.initVersion

Type: String

Default value: 0.0.0

Initialization version

options.maxVersionNumber

Type: Array

Default value: [10, 100, 100]

Max version number

Usage Examples

grunt.initConfig({
    'static-revision': {
        options: {
            src: '<%= config.src %>',
            dist: '<%= config.dist %>'
        },
        src: [
            '<%= config.src %>/js/{,*/}*.js',
            '<%= config.src %>/css/{,*/}*.css'
        ]
    }
});

Release History

2014-11-18 only build the changed file

2014-08-11 Incremental updating strategy,add chalk module for terminal string styling

2014-07-29 bugfix:build a error key for multilayer directory

2014-07-25 Optimizing log format

2014-07-24 Concat config into one json file & bugfix

2014-07-21 First commit

0.2.2

9 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.8

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago