-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: SBoudrias/Inquirer.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3cbb523604fea0b1236cb4f25ab506a5748b7d2a
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: SBoudrias/Inquirer.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 54285c75bc7986e0e2c7bcd2bc8ae4ddd6f05929
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
84
contributors
Commits on Jun 20, 2016
-
Configuration menu - View commit details
-
Copy full SHA for d58d1c2 - Browse repository at this point
Copy the full SHA d58d1c2View commit details
Commits on Jun 25, 2016
-
1
Configuration menu - View commit details
-
Copy full SHA for 0c2e673 - Browse repository at this point
Copy the full SHA 0c2e673View commit details -
Configuration menu - View commit details
-
Copy full SHA for adf4557 - Browse repository at this point
Copy the full SHA adf4557View commit details
Commits on Jul 4, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 62eeca8 - Browse repository at this point
Copy the full SHA 62eeca8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1eec0cd - Browse repository at this point
Copy the full SHA 1eec0cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 07a3774 - Browse repository at this point
Copy the full SHA 07a3774View commit details
Commits on Jul 7, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 57cb88f - Browse repository at this point
Copy the full SHA 57cb88fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 756ffef - Browse repository at this point
Copy the full SHA 756ffefView commit details
Commits on Jul 26, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 6c5c562 - Browse repository at this point
Copy the full SHA 6c5c562View commit details
Commits on Aug 9, 2016
-
Could be mistaken, but it doesn't look like 'ui' is a property of the return value from the prompt method. It seems that process property you want to subscribe to is a top level property.
Configuration menu - View commit details
-
Copy full SHA for 5c4d0c0 - Browse repository at this point
Copy the full SHA 5c4d0c0View commit details
Commits on Sep 2, 2016
-
Configuration menu - View commit details
-
Copy full SHA for e6f4965 - Browse repository at this point
Copy the full SHA e6f4965View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5084874 - Browse repository at this point
Copy the full SHA 5084874View commit details
Commits on Sep 30, 2016
-
2
Configuration menu - View commit details
-
Copy full SHA for 339eaee - Browse repository at this point
Copy the full SHA 339eaeeView commit details -
- updated external-editor to version 1.1.0 - switched from using ExternalEditor.edit to ExternalEditor.editAsync
Configuration menu - View commit details
-
Copy full SHA for 1e9de29 - Browse repository at this point
Copy the full SHA 1e9de29View commit details -
Add error handling for errors produced in filter function (#407)
Configuration menu - View commit details
-
Copy full SHA for 287d437 - Browse repository at this point
Copy the full SHA 287d437View commit details -
Configuration menu - View commit details
-
Copy full SHA for c757c71 - Browse repository at this point
Copy the full SHA c757c71View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a511ea - Browse repository at this point
Copy the full SHA 6a511eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for c3ee37e - Browse repository at this point
Copy the full SHA c3ee37eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8969259 - Browse repository at this point
Copy the full SHA 8969259View commit details
Commits on Oct 10, 2016
-
Configuration menu - View commit details
-
Copy full SHA for d74f03f - Browse repository at this point
Copy the full SHA d74f03fView commit details
Commits on Oct 11, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 125a1d8 - Browse repository at this point
Copy the full SHA 125a1d8View commit details
Commits on Nov 8, 2016
-
Configuration menu - View commit details
-
Copy full SHA for f540851 - Browse repository at this point
Copy the full SHA f540851View commit details
Commits on Nov 10, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 5a73a88 - Browse repository at this point
Copy the full SHA 5a73a88View commit details
Commits on Nov 13, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a78dbac - Browse repository at this point
Copy the full SHA a78dbacView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac8b564 - Browse repository at this point
Copy the full SHA ac8b564View commit details
Commits on Nov 19, 2016
-
Configuration menu - View commit details
-
Copy full SHA for b62f51c - Browse repository at this point
Copy the full SHA b62f51cView commit details
Commits on Nov 20, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 3943f35 - Browse repository at this point
Copy the full SHA 3943f35View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a44e94 - Browse repository at this point
Copy the full SHA 4a44e94View commit details -
Add support for object paths in question names (#425)
Consider the following set of questions: ```js { type: 'input', name: 'name.first', message: 'What\'s your first name?' }, { type: 'input', name: 'name.last', message: 'What\'s your last name?' } ``` The resulting answer object will look something like this: ```js { 'name.first': 'John', 'name.last': 'Doe' } ``` If the `name` properties contains periods, it makes sense that Inquirer will interpret them as paths in the final answers object, resulting in something like this instead: ```js { name: { first: 'John', last: 'Doe' } } ``` This change is implemented by making use of `_.set` when assigning the value to the answers hash. Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
Configuration menu - View commit details
-
Copy full SHA for 2ad1824 - Browse repository at this point
Copy the full SHA 2ad1824View commit details
Commits on Nov 24, 2016
-
Default value for expand can be 'help' (#457)
* Default value for expand can be 'help' * Make help the default option if no default key is provided * tiny change requested by SBoudrias * simplifying even more :) * using `choices.realLength`
Configuration menu - View commit details
-
Copy full SHA for ae73e86 - Browse repository at this point
Copy the full SHA ae73e86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07c0683 - Browse repository at this point
Copy the full SHA 07c0683View commit details -
Configuration menu - View commit details
-
Copy full SHA for dcc5c6d - Browse repository at this point
Copy the full SHA dcc5c6dView commit details
Commits on Nov 25, 2016
-
Added missing documentation for `pageSize` #439
Configuration menu - View commit details
-
Copy full SHA for 081b7af - Browse repository at this point
Copy the full SHA 081b7afView commit details
Commits on Dec 1, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 7c777b9 - Browse repository at this point
Copy the full SHA 7c777b9View commit details
Commits on Dec 8, 2016
-
Configuration menu - View commit details
-
Copy full SHA for dafd240 - Browse repository at this point
Copy the full SHA dafd240View commit details
Commits on Dec 22, 2016
-
* Create .codeclimate.yml Created a Code Climate config with ESLint and Duplication enabled. * Update .codeclimate.yml
Configuration menu - View commit details
-
Copy full SHA for 8bce2a1 - Browse repository at this point
Copy the full SHA 8bce2a1View commit details
Commits on Dec 31, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 26f7612 - Browse repository at this point
Copy the full SHA 26f7612View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34408c6 - Browse repository at this point
Copy the full SHA 34408c6View commit details
Commits on Jan 4, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 26d501f - Browse repository at this point
Copy the full SHA 26d501fView commit details
Commits on Jan 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 4cbdf95 - Browse repository at this point
Copy the full SHA 4cbdf95View commit details
Commits on Jan 16, 2017
-
Fix issue when failing promise-based validation (#471)
* Fix issue when failing promise-based validation * update tests * eslint issue
Configuration menu - View commit details
-
Copy full SHA for 19cc6e0 - Browse repository at this point
Copy the full SHA 19cc6e0View commit details
Commits on Jan 23, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 399b3a2 - Browse repository at this point
Copy the full SHA 399b3a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a56b479 - Browse repository at this point
Copy the full SHA a56b479View commit details
Commits on Jan 24, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 66822e6 - Browse repository at this point
Copy the full SHA 66822e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for aefa784 - Browse repository at this point
Copy the full SHA aefa784View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51fed2b - Browse repository at this point
Copy the full SHA 51fed2bView commit details
Commits on Feb 16, 2017
-
Configuration menu - View commit details
-
Copy full SHA for fd9c753 - Browse repository at this point
Copy the full SHA fd9c753View commit details
Commits on Feb 20, 2017
-
Configuration menu - View commit details
-
Copy full SHA for e0bc2f2 - Browse repository at this point
Copy the full SHA e0bc2f2View commit details
Commits on Feb 22, 2017
-
Clears screen at bottom of prompt - alternative (#500)
* Clears screen at bottom of prompt * Remove unused dep * Move creation of currentScreen to constructor * Alternative approach with prompt.close * Removing dead code in screen manager * Implements default close behaviour
Configuration menu - View commit details
-
Copy full SHA for f0a342f - Browse repository at this point
Copy the full SHA f0a342fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 79eebac - Browse repository at this point
Copy the full SHA 79eebacView commit details
There are no files selected for viewing