peertopark/composer-grunt-bridge

Grunt integration for Composer packages.

Installs: 507

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 5

Type:composer-plugin

1.0.2 2017-01-27 11:34 UTC

This package is not auto-updated.

Last update: 2024-04-22 12:50:41 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"]
  }
}