Socket
Socket
Sign inDemoInstall

broccoli-callback

Package Overview
Dependencies
21
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    broccoli-callback

A plugin to execute any code within Broccoli builds.


Version published
Weekly downloads
1
Maintainers
1
Install size
1.11 MB
Created
Weekly downloads
 

Readme

Source

broccoli-callback

END OF DEVELOPMENT NOTICE - This package has been discontinued

A plugin to execute any code within Broccoli builds.

Usage

Simply create a new instance of the plugin passing a callback function.

The function will receive the current plugin.

To execute asynchronous code in the callback, return a Promise so Broccoli will wait.

Example

const BroccoliCallback = require("broccoli-callback");

module.exports = return new BroccoliCallback("NAME", [/* Input Nodes, can be an empty array */], (plugin, options) => {
  return new Promise((resolve, reject) => {
    // Do something here, then resolve
  });
}, {/* Options, you can omit this */});

Supported implementations.

broccoli-callback supports and has been tested on NodeJS 6.0+.

Contributing to broccoli-callback

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.

Copyright (C) 2017 and above Shogun mailto:shogun@cowtech.it.

Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.

Keywords

FAQs

Last updated on 11 Dec 2019

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