peertopark / composer-grunt-bridge
Grunt integration for Composer packages.
Installs: 507
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 5
Type:composer-plugin
Requires
- php: >=5.3
- composer-plugin-api: ^1
- eloquent/composer-npm-bridge: ^3.0.1
Requires (Dev)
- composer/composer: ^1
- eloquent/phony: ^0.8
- phpunit/phpunit: ^4
This package is not auto-updated.
Last update: 2025-03-24 17:12:00 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"] } }