Socket
Socket
Sign inDemoInstall

grunt-promise-q

Package Overview
Dependencies
31
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-promise-q

Write asynchronous grunt tasks with Q promises.


Version published
Weekly downloads
1
decreased by-90.91%
Maintainers
1
Install size
98.5 kB
Created
Weekly downloads
 

Readme

Source

grunt-promise-q Build Status

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 before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-promise-q --save-dev

Once the plugin has been installed, it may be used to define asynchronous tasks:

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.

Release History

  • 0.1.1 Maintenance release
  • 0.1.0 Initial preview

Keywords

FAQs

Last updated on 13 Feb 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc