🚀 Launch Week Day 2:Introducing Custom Tabs for Org Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

base-task-prompts

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base-task-prompts

Utils for using prompts to conditionally run tasks. Requires the base-task and base-questions plugins.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

base-task-prompts NPM version NPM downloads Build Status

Utils for using prompts to conditionally run tasks. Requires the base-task and base-questions plugins.

Install

Install with npm:

$ npm install base-task-prompts --save

Usage

Heads up! This is not a plugin, but the main export is a function that takes an instance of base as its only argument.

var prompts = require('base-task-prompts');
var questions = require('base-questions');
var task = require('base-task');
var Base = require('base');
var app = new Base();

var ask = prompts(app);
app.use(questions());
app.use(task());

Examples

Conditionally call a function

To run this example, you will also need to use the base-npm plugin.

var npm = require('base-npm');
app.use(npm());

// calls the function if the user's answer is truthy
app.task('foo', ask.confirm('Would you like to install deps?', function(cb) {
  app.npm.latest(cb);
}));

Conditionally run tasks

To run this example, you will also need to use the base-npm plugin.

// runs the specified task if the user's answer is truthy
app.task('foo', ask.confirm('Would you like to install deps?', ['npm']));

// if the user answers "yest"
app.task('npm', function(cb) {
  app.npm.latest(cb);
});

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

Follow me on GitHub or Twitter for updates about base-task-prompts and my other libraries:

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.

This file was generated by verb, v, on April 07, 2016.

Keywords

base

FAQs

Package last updated on 07 Apr 2016

Did you know?

Socket

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