# grunt-queue

> Queue up tasks for use with config.merge

Latest version **1.0.1** (published 2014-07-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install grunt-queue
pnpm add grunt-queue
yarn add grunt-queue
bun add grunt-queue
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2014-07-31 |
| First published | 2014-07-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dan Cobb |
| Maintainers | cobbdb |
| Keywords | grunt, contrib, run, tasks, organization, tidy, neat |

## Links

- npm: https://www.npmjs.com/package/grunt-queue
- Repository: https://github.com/cobbdb/grunt-queue
- Issues: https://github.com/cobbdb/grunt-queue/issues
- npm.io page: https://npm.io/package/grunt-queue

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2014-07-31
- 1.0.0 — 2014-07-31

## README

# grunt-queue [![NPM version](https://badge.fury.io/js/grunt-queue.svg)](http://badge.fury.io/js/grunt-queue)

Queue up tasks for use with config.merge

    $ npm install grunt-queue

-------------
## Example Use
grunt-queue is designed for very large projects with many
modules - each having their own Grunt config files.

    // my-component.task.js
    module.exports = function (grunt) {
        grunt.config.merge({
            queue: {
                'my-component': {
                    tasks: [
                        'first:task',
                        'second:task'
                    ]
                }
            }
        });
    };

    // main-gruntfile.js
    grunt.registerTask('build', 'Build all components', [
        'queue'
    ]);

## Task Configuration
The `queue` task only takes a single array of task names:

    'queue': {
        'my-component': {
            tasks: [
                'first:task',
                'second:task'
            ]
        }
    }

The task can be loaded like any other grunt contrib:

    grunt.loadNpmTasks('grunt-queue');

---------
* See: https://www.npmjs.org/package/grunt-queue
* See: http://github.com/cobbdb/grunt-queue
* License: MIT

---
_Source: https://npm.io/package/grunt-queue · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
