包详细信息

grunt-sizediff

sindresorhus107MIT不推荐使用2.0.0

Deprecated

Diff file sizes between current git branch and a branch/commit

gruntplugin, size, diff, difference

自述文件

grunt-sizediff

Diff file sizes between current git branch and a branch/commit.
Helps you keep an eye on your project size changes.

Install

$ npm install --save-dev grunt-sizediff

Usage

require('load-grunt-tasks')(grunt); // npm install --save-dev load-grunt-tasks

grunt.initConfig({
    sizediff: {
        dist: {
            src: [
                'file.js',
                'file.min.js' // optional
            ]
        }
    }
});

grunt.registerTask('default', ['sizediff']);

You can specify two files to diff and an optional target. It falls back to master if target is not specified.

Diff against a branch

sizediff: {
    dist: {
        options: {
            target: 'future' // branch
        },
        src: [
            'file.js',
            'file.min.js'
        ]
    }
}

Diff against a commit

sizediff: {
    dist: {
        options: {
            target: 'fd9b092' // commit
        },
        src: [
            'file.js',
            'file.min.js'
        ]
    }
}

Override target

You can temporarily override the diff target of a task by running grunt sizediff:dist:target, where dist is the task target you want to override and target is the branch or commit.

License

MIT © Sindre Sorhus