JSPM

prompt-sui

3.2.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3091
  • Score
    100M100P100Q111159F
  • License MIT

Updated fork of gulp-prompt with more recent inquirer.js

Package Exports

  • prompt-sui

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (prompt-sui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Gulp prompt

THIS REPOSITORY NEED A NEW MAINTAINER

I don't use atom for a while... like 2years and i don't have time to maintain this repository. If someone wants to be involved, just drop me an email.

Add interaction to gulp tasks.

.confirm([options])

Options:

  • message - Message to be displayed
  • default - Default response if none is provided

This method will allow the pipe to continue if the user input is true, otherwise, it will be terminated.

Default usage:

gulp.src('test.js')
    .pipe(prompt.confirm())
    .pipe(gulp.dest('dest'));

If a string is provided to the options, it will be set as the message:

gulp.src('test.js')
    .pipe(prompt.confirm('Are you ready for Gulp?'))
    .pipe(gulp.dest('dest'));

Example when using options:

gulp.src('test.js')
    .pipe(prompt.confirm({
        message: 'Continue?',
        default: true
    }))
    .pipe(gulp.dest('dest'));

.prompt(questions, callback)

This is a clean pass-through function for gulp to utilize the full Inquirer.js Library, please refer to them for documentation on corresponding parameters.

Please note that all types are avaiable, not just the examples below.

Example Input:

gulp.src('test.js')
    .pipe(prompt.prompt({
        type: 'input',
        name: 'task',
        message: 'Which task would you like to run?'
    }, function(res){
        //value is in res.task (the name option gives the key)
    }));

Example Checkbox:

gulp.src('test.js')
    .pipe(prompt.prompt({
        type: 'checkbox',
        name: 'bump',
        message: 'What type of bump would you like to do?',
        choices: ['patch', 'minor', 'major']
    }, function(res){
        //value is in res.bump (as an array)
    }));

Example Password:

gulp.src('test.js')
    .pipe(prompt.prompt({
        type: 'password',
        name: 'pass',
        message: 'Please enter your password'
    }, function(res){
        //value is in res.pass
    }));

Example Multiple:

gulp.src('test.js')
    .pipe(prompt.prompt([{
        type: 'input',
        name: 'first',
        message: 'First question?'
    },
    {
        type: 'input',
        name: 'second',
        message: 'Second question?'
    }], function(res){
        //value is in res.first and res.second
    }));

Example Validation:

gulp.src('test.js')
    .pipe(prompt.prompt({
        type: 'password',
        name: 'pass',
        message: 'Please enter your password',
        validate: function(pass){

            if(pass !== '123456'){
                return false;
            }

            return true;
        }
    }, function(res){
        //value is in res.pass
    }));