npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-git-diff

v0.0.7

Published

Grunt Task that uses the git diff information to modify the content of files

Downloads

9

Readme

grunt-git-diff

"Grunt Task that uses the git diff information to modify the content of files",

A simple Grunt multitask that uses git diff information to modify the content of files.

Used in paged-media-boilerplate.

Makes use of simple-git

Table of Contents

Getting Started

Use it with grunt

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-git-diff

Then add this line to your project's grunt.js gruntfile:

grunt.loadNpmTasks('grunt-git-diff');

Documentation

Here the available options with the corresponding defaults:

# Regex which is used to get the hunk
# Note, that the index 2 is the number of overwritten lines
# index 3 is the linenumber where to overwrite, and index 5 is the current 
# environment, important for jade parsing
hunkregex: /@@ \-(\d+),(\d+) \+(\d+),(\d+) @@([\s\S]*)/

# string which is prepended if a line is added
prependplus: "span(style='color:red') "

# string which is prepended if a line is deleted
prependminus: "span(style='color:red') " 

# function which is used to calculate the new strings based on the hunk
# corresponding prepend / append strings
cb = (hunk, environment, options) ->
  # default is to parse jade

Example with jade

First append this to your css:

span.strongred, span.strongred * {color:red !important;}
span.strongblue, span.strongblue * {color:blue !important;}

This is how the task could look like, which creates a jade diff:

gitdiff:
  options:
    prependplus: "span.strongred " 
    prependminus:"span.strongblue "
  compile:
    files: [
      expand: true,
      cwd: "jade/",
      src: ["**/*.jade"],
      ext: ".jade",
      dest: "tmp/"   
    ]

Release History

  • v0.0.7: using stdout stream
  • v0.0.6: Changed output / added test / bugfixed
  • v0.0.5: Bugfix
  • v0.0.4: major rework
  • v0.0.3: Bugfix
  • v0.0.2: Updated dependencies
  • v0.0.1: First Release

License

Copyright (c) 2014 Paul Pflugradt Licensed under the MIT license.