johnpbloch/composer-grunt-bridge

Grunt integration for Composer packages.

0.0.2 2015-06-11 15:12 UTC

This package is auto-updated.

Last update: 2024-04-10 06:32:22 UTC


README

Grunt integration for Composer packages.

A quick proof of concept based entirely on (and shamelessly stolen from) the composer-npm-bridge.

Basically, add this to your composer.json requirements to have composer run the default grunt task for your project on install or update. You can specify a certain non-default task or list of tasks using the "extra" object:

// Specify one task to run
{
  "extra": {
    "grunt-task": "build"
  }
}
// OR specify multiple tasks to run
{
  "extra": {
    "grunt-task": ["sass", "concat", "uglify", "cssmin"]
  }
}