Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phadej/grunt-promise-q
Write asynchronous grunt tasks with Q promises.
https://github.com/phadej/grunt-promise-q
Last synced: about 7 hours ago
JSON representation
Write asynchronous grunt tasks with Q promises.
- Host: GitHub
- URL: https://github.com/phadej/grunt-promise-q
- Owner: phadej
- License: bsd-3-clause
- Created: 2013-10-01T07:06:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-13T07:59:38.000Z (over 10 years ago)
- Last Synced: 2024-10-11T23:53:19.530Z (26 days ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-promise-q [![Build Status](https://secure.travis-ci.org/phadej/grunt-promise-q.png?branch=master)](http://travis-ci.org/phadej/grunt-promise-q)
> Write asynchronous grunt tasks with Q promises.
## Getting Started
This package requires Grunt `~0.4.1` (the only tested).
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
npm install grunt-promise-q --save-dev
```Once the plugin has been installed, it may be used to define asynchronous tasks:
```js
var q = require("q");
var asyncTask = require("grunt-promise-q");module.exports = function (grunt) {
asyncTask.register(grunt, "delay", "delay for 100 ms", function () {
return q.delay(100);
});
};
```## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).## Release History
- 0.1.1 Maintenance release
- 0.1.0 Initial preview