grunt-prompt
Interactive prompt for your Grunt config using console checkboxes, text input with filtering, password fields.
Getting Started
This plugin recommends Grunt 0.4.1
or newer.
Installing
npm install grunt-prompt --save-dev
Once that's done, add this line to your project's Gruntfile.js
:
grunt.loadNpmTasks('grunt-prompt');
Grunt-prompt
's UI is powered by the amazing Inquirer, a project created by Simon Boudrias.
Overview
In your project's Gruntfile, add a section named prompt
to the data object passed into grunt.initConfig()
.
grunt-prompt
is a multi-task. This means you can create multiple prompts.
grunt.initConfig({
prompt: {
target: {
options: {
questions: [
{
config: 'config.name',
type: '<question type>',
message: 'Question to ask the user',
default: 'value',
choices: 'Array|function(answers)',
validate: function(value),
filter: function(value),
when: function(answers)
}
]
}
},
},
})
Options
config
Type: String
required
This is used for three things:
- It will set or overwrite the config of other Grunt tasks:
config: 'jshint.allFiles.reporter'
- The key in the resulting
answers
object: if (answers['jshint.allFiles.reporter'] === 'custom') {...
- It can be an abitrary value read using
grunt.config
: grunt.config('jshint.allFiles.reporter')
type
Type: String
required
Type of question to ask:
list
: use arrow keys to pick one choice. Returns a string.checkbox
: use arrow keys and space bar to pick multiple items. Returns an array.confirm
: Yes/no. Returns a boolean.input
: Free text input. Returns a string.password
: Masked input. Returns a string.
Here's an example of each type:
The documentation for Inquiry has more details about type as well as additional typess.
message
Type: String
required
Question to ask the user.
Hint: keep it short, users hate to read.
default
Type: String
/Array
/Boolean
/'function' optional
Default value used when the user just hits Enter. If a value
field is not provided, the filter value must match the name
exactly.
choices
For question types 'list' and 'checkbox'
: Type: array of hashes
name
The label that is displayed in the UI.value
optional Value returned. When not used the name is used instead.checked
optional Choose the option by default. Only for checkbox.
choices: [
{ name: 'jshint', checked: true },
{ name: 'jslint' },
{ name: 'eslint' },
'---', // puts in a non-selectable separator
{ name: 'I like to live dangerously', value: 'none' }
]
validate
Type: function(value)
optional
Return true
if it is valid (true true
, not a truthy value).
Return string
message if it is not valid.
filter
Type: function(value)
optional
Use a modified version of the input for the answer. Useful for stripping extra characters, converting strings to integers.
when
Type: function(answers)
optional
Choose when this question is asked. Perfect for asking questions based on the results of previous questions.
then
Type: function(results)
optional
Runs after all questions have been asked.
How to use the results in your Gruntfile
You can also modify how tasks will work by changing options for other tasks.
You do not need to write code to do this, it's all in the config
var.
Here we will let the user choose what Mocha reporter to use.
config:
prompt: {
mochacli: {
options: {
questions: [
{
config: 'mochacli.options.reporter'
type: 'list'
message: 'Which Mocha reporter would you like to use?',
default: 'spec'
choices: ['dot', 'spec', 'nyan', 'TAP', 'landing', 'list',
'progress', 'json', 'JSONconv', 'HTMLconv', 'min', 'doc']
}
]
}
}
}
and create a shortcut:
grunt.registerTask('test',
[
'prompt:mochacli',
'mochacli'
]);
And run it:
$ grunt test
How can values be accessed from my own code?
This config
value is accessible to all other grunt
tasks via grunt.config('<config name>')
.
If you had this:
config: 'validation'
Then later on in your custom task can access it like this:
var validation = grunt.config('validation');
Usage Examples
This is an example of how grunt-prompt
for something like grunt-bump which makes it easy to
update your project's version in the package.json
, bower.json
, and git tag
.
prompt: {
bump: {
options: {
questions: [
{
config: 'bump.increment',
type: 'list',
message: 'Bump version from ' + '<%= pkg.version %>'.cyan + ' to:',
choices: [
{
value: 'build',
name: 'Build: '.yellow + (currentVersion + '-?').yellow +
' Unstable, betas, and release candidates.'
},
{
value: 'patch',
name: 'Patch: '.yellow + semver.inc(currentVersion, 'patch').yellow +
' Backwards-compatible bug fixes.'
},
{
value: 'minor',
name: 'Minor: '.yellow + semver.inc(currentVersion, 'minor').yellow +
' Add functionality in a backwards-compatible manner.'
},
{
value: 'major',
name: 'Major: '.yellow + semver.inc(currentVersion, 'major').yellow +
' Incompatible API changes.'
},
{
value: 'custom',
name: 'Custom: ?.?.?'.yellow +
' Specify version...'
}
]
},
{
config: 'bump.version',
type: 'input',
message: 'What specific version would you like',
when: function (answers) {
return answers['bump.increment'] === 'custom';
},
validate: function (value) {
var valid = semver.valid(value) && true;
return valid || 'Must be a valid semver, such as 1.2.3-rc1. See ' +
'http://semver.org/'.blue.underline + ' for more details.';
}
},
{
config: 'bump.files',
type: 'checkbox',
message: 'What should get the new version:',
choices: [
{
value: 'package',
name: 'package.json' +
(!grunt.file.isFile('package.json') ? ' file not found, will create one'.grey : ''),
checked: grunt.file.isFile('package.json')
},
{
value: 'bower',
name: 'bower.json' +
(!grunt.file.isFile('bower.json') ? ' file not found, will create one'.grey : ''),
checked: grunt.file.isFile('bower.json')
},
{
value: 'git',
name: 'git tag',
checked: grunt.file.isDir('.git')
}
]
}
]
}
}
}
Release History
- 0.2.2 - 4 Feb 2014 - Updated readme to make it auto-generated.
- 0.2.1 - 4 Feb 2014 - Fix bug when using a function to provide choices.
- 0.2.0 - 26 Jan 2014 - Added
then
option which runs after questions. Improved docs. - 0.1.1 - 27 July 2013 - Some documentation cleanup, better screenshots, new example code in the gruntfile, reomved unused tests.
- 0.1.0 - 18 July 2013 - First version, after an exhausting but fun day with the family at Hershey Park.
About the Author
Dylan is a senior JavaScript developer and tech lead at Opower, co-creator of Doodle or Die, and father of two awesome kids.
Here are some other Node modules Dylan has created:
Name | Description | Github Stars | Npm Installs |
---|
grunt-notify | Automatic desktop notifications for Grunt errors and warnings using Growl for OS X or Windows, Mountain Lion and Mavericks Notification Center, and Notify-Send. | 619 | 52,208 |
rss | RSS feed generator. A really simple API to add RSS feeds to any project. | 177 | 98,802 |
shortid | Amazingly short non-sequential url-friendly unique id generator. | 129 | 22,984 |
xml | Fast and simple xml generator. Supports attributes, CDATA, etc. Includes tests and examples. | 35 | 180,625 |
anthology | Module information and stats for any @npmjs user | New! | TBD |
grunt-attention | Display attention-grabbing messages in the terminal | New! | 336 |
observatory | Beautiful UI for showing tasks running on the command line. | New! | 81 |
changelog | Command line tool (and Node module) that generates a changelog in color output, markdown, or json for modules in npmjs.org's registry as well as any public github.com repo. | 51 | 2,081 |
logging | Super sexy color console logging with cluster support. | 21 | 8,793 |
grunt-cat | Echo a file to the terminal. Works with text, figlets, ascii art, and full-color ansi. | New! | 396 |
Data collected on Saturday, February 8, 2014 using anthology.
License
Copyright (c) 2014 Dylan Greene, contributors.
Released under the MIT license
Generated by grunt-readme using grunt-templates-dylang on Saturday, February 8, 2014.