Socket
Socket
Sign inDemoInstall

grunt-gitnewer

Package Overview
Dependencies
100
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-gitnewer

Run Grunt tasks with only those source files modified since the last git commit.


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
172 kB
Created
Weekly downloads
 

Readme

Source

grunt-gitnewer

Build Status Images

Run Grunt tasks with only those source files modified since the last git commit.

It's very like grunt-newer, but for git commit.

Usage

The gitnewer task

The most common use case. If some files changed from last git commit, and exactly match with one or more task, then those tasks will run with only those files.

grunt.initConfig({
    jshint: {
        all: {
            src: ['src/**/*.js']
        }
    }
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-gitnewer');

grunt.registerTask('lint', ['gitnewer:jshint:all']);

The gitnewer-prefix task

The only differece from gitnewer task is gitnewer-prefix uses prefix match, this is useful when src of task is a list of directories.

Options

branch='HEAD', diffFilter='ACM'

Internally, the following command is executed to detect changed files from some git commit:

git diff ${branch} --name-only --diff-filter=${diffFilter}

branch and diffFilter can be configured to meet your needs.

Keywords

FAQs

Last updated on 28 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc