Grunt plugin to run a Broccoli build as a Grunt task. This plugin invokes Broccoli's build within a Grunt workflow, allowing developers to use Grunt for orchestration (cleaning, testing, etc.) while leveraging Broccoli for asset pipeline builds. Version 0.6.0 is the final release; it requires Grunt >=0.4.1 <0.5.0 and Broccoli >=0.2.1. It is designed for simple integration: load the npm task and configure a broccoli_build target with a destination and optional Brocfile path. The plugin supports configurable brocfile (since 0.5.0) and waits for Broccoli's cleanup promise (fixed in 0.6.0). No longer actively developed; consider switching to direct Broccoli CLI or modern alternatives.
npm install grunt-broccoli-buildNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configures and runs the broccoli_build Grunt task to build assets via Broccoli.
Use an older Grunt version or migrate to a modern build tool (e.g., direct Broccoli CLI, webpack, or Vite).
Install and configure grunt-env to set BROCCOLI_ENV before running broccoli_build.
Consider alternatives like directly using broccoli CLI or moving to another asset pipeline.
Ensure Broccoli >=0.12.x for version 0.2.0+.
Use 'broccoli_build' (underscores) in task name and initConfig key.
Run 'npm install grunt-broccoli-build --save-dev' and ensure grunt.loadNpmTasks('grunt-broccoli-build') is in Gruntfile. Check Grunt version compatibility.Run 'npm install broccoli --save-dev'.
Create a Gruntfile.js with the necessary configuration.