Skip to content
Permalink

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
Choose a base ref
...
head repository: SBoudrias/Inquirer.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 54285c75bc7986e0e2c7bcd2bc8ae4ddd6f05929
Choose a head ref

Commits on Jun 20, 2016

  1. Copy the full SHA
    d58d1c2 View commit details

Commits on Jun 25, 2016

  1. Implemented editor input support. (#389)

    mrkmg authored and SBoudrias committed Jun 25, 2016
    1
    Copy the full SHA
    0c2e673 View commit details
  2. 1.1.0

    SBoudrias committed Jun 25, 2016
    Copy the full SHA
    adf4557 View commit details

Commits on Jul 4, 2016

  1. Copy the full SHA
    62eeca8 View commit details
  2. Copy the full SHA
    1eec0cd View commit details
  3. 1.1.1

    SBoudrias committed Jul 4, 2016
    Copy the full SHA
    07a3774 View commit details

Commits on Jul 7, 2016

  1. Copy the full SHA
    57cb88f View commit details
  2. 1.1.2

    SBoudrias committed Jul 7, 2016
    Copy the full SHA
    756ffef View commit details

Commits on Jul 26, 2016

  1. Copy the full SHA
    6c5c562 View commit details

Commits on Aug 9, 2016

  1. Update README.md (#404)

    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.
    walfly authored and SBoudrias committed Aug 9, 2016
    Copy the full SHA
    5c4d0c0 View commit details

Commits on Sep 2, 2016

  1. ensure provided options aren't overwritten on successive prompt calls (

    …#415)
    
    closes #414
    - fix issue with custom prompt modules on successive calls
    acburdine authored and SBoudrias committed Sep 2, 2016
    Copy the full SHA
    e6f4965 View commit details
  2. 1.1.3

    SBoudrias committed Sep 2, 2016
    Copy the full SHA
    5084874 View commit details

Commits on Sep 30, 2016

  1. 2
    Copy the full SHA
    339eaee View commit details
  2. editor prompt is now async

    - updated external-editor to version 1.1.0
    - switched from using ExternalEditor.edit to ExternalEditor.editAsync
    Kevin Gravier authored and SBoudrias committed Sep 30, 2016
    Copy the full SHA
    1e9de29 View commit details
  3. Add error handling for errors produced in filter function (#407)

    Changes behavior of errors produced in async filter functions from
    throwing to printing the error and reprompting the user for a
    non-erroring input. Addresses #363
    
    cc/ @rclark
    Jake Pruitt authored and SBoudrias committed Sep 30, 2016
    Copy the full SHA
    287d437 View commit details
  4. Copy the full SHA
    c757c71 View commit details
  5. 1.2.0

    SBoudrias committed Sep 30, 2016
    Copy the full SHA
    6a511ea View commit details
  6. Fix for old Node versions

    SBoudrias committed Sep 30, 2016
    Copy the full SHA
    c3ee37e View commit details
  7. 1.2.1

    SBoudrias committed Sep 30, 2016
    Copy the full SHA
    8969259 View commit details

Commits on Oct 10, 2016

  1. Fixed #423 (#430)

    mrkmg authored and SBoudrias committed Oct 10, 2016
    Copy the full SHA
    d74f03f View commit details

Commits on Oct 11, 2016

  1. 1.2.2

    SBoudrias committed Oct 11, 2016
    Copy the full SHA
    125a1d8 View commit details

Commits on Nov 8, 2016

  1. Documentation Examples (#444)

    evenstensberg authored and SBoudrias committed Nov 8, 2016
    Copy the full SHA
    f540851 View commit details

Commits on Nov 10, 2016

  1. Copy the full SHA
    5a73a88 View commit details

Commits on Nov 13, 2016

  1. Dispose events.line subscription properly for editor questions. Fixes #…

    Moritz Marquardt authored and SBoudrias committed Nov 13, 2016
    Copy the full SHA
    a78dbac View commit details
  2. 1.2.3

    SBoudrias committed Nov 13, 2016
    Copy the full SHA
    ac8b564 View commit details

Commits on Nov 19, 2016

  1. Fix rxjs example in readme

    SBoudrias authored Nov 19, 2016
    Copy the full SHA
    b62f51c View commit details

Commits on Nov 20, 2016

  1. Copy the full SHA
    3943f35 View commit details
  2. Copy the full SHA
    4a44e94 View commit details
  3. 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>
    Juan Cruz Viotti authored and SBoudrias committed Nov 20, 2016
    Copy the full SHA
    2ad1824 View commit details

Commits on Nov 24, 2016

  1. 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`
    ihorskyi authored and SBoudrias committed Nov 24, 2016
    Copy the full SHA
    ae73e86 View commit details
  2. 1.3.0

    SBoudrias committed Nov 24, 2016
    Copy the full SHA
    07c0683 View commit details
  3. 2.0.0

    SBoudrias committed Nov 24, 2016
    Copy the full SHA
    dcc5c6d View commit details

Commits on Nov 25, 2016

  1. Update README.md (#464)

    Added missing documentation for `pageSize`
    #439
    ntwcklng authored and SBoudrias committed Nov 25, 2016
    Copy the full SHA
    081b7af View commit details

Commits on Dec 1, 2016

  1. Drop pinkie-promise. (#466)

    wtgtybhertgeghgtwtg authored and SBoudrias committed Dec 1, 2016
    Copy the full SHA
    7c777b9 View commit details

Commits on Dec 8, 2016

  1. Copy the full SHA
    dafd240 View commit details

Commits on Dec 22, 2016

  1. Code Climate config (#476)

    * Create .codeclimate.yml
    
    Created a Code Climate config with ESLint and Duplication enabled.
    
    * Update .codeclimate.yml
    larkinscott authored and SBoudrias committed Dec 22, 2016
    Copy the full SHA
    8bce2a1 View commit details

Commits on Dec 31, 2016

  1. Copy the full SHA
    26f7612 View commit details
  2. Use yarn

    SBoudrias committed Dec 31, 2016
    Copy the full SHA
    34408c6 View commit details

Commits on Jan 4, 2017

  1. Copy the full SHA
    26d501f View commit details

Commits on Jan 15, 2017

  1. Copy the full SHA
    4cbdf95 View commit details

Commits on Jan 16, 2017

  1. Fix issue when failing promise-based validation (#471)

    * Fix issue when failing promise-based validation
    
    * update tests
    
    * eslint issue
    ryankeener authored and SBoudrias committed Jan 16, 2017
    Copy the full SHA
    19cc6e0 View commit details

Commits on Jan 23, 2017

  1. Fix BottomBar.log.write not working (#486)

    Fixes #485
    zaide-chris authored and SBoudrias committed Jan 23, 2017
    Copy the full SHA
    399b3a2 View commit details
  2. 3.0.0

    SBoudrias committed Jan 23, 2017
    Copy the full SHA
    a56b479 View commit details

Commits on Jan 24, 2017

  1. Copy the full SHA
    66822e6 View commit details
  2. 3.0.1

    SBoudrias committed Jan 24, 2017
    Copy the full SHA
    aefa784 View commit details
  3. Bump yarn.lock

    SBoudrias committed Jan 24, 2017
    Copy the full SHA
    51fed2b View commit details

Commits on Feb 16, 2017

  1. Copy the full SHA
    fd9c753 View commit details

Commits on Feb 20, 2017

  1. Copy the full SHA
    e0bc2f2 View commit details

Commits on Feb 22, 2017

  1. 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
    mokkabonna authored and SBoudrias committed Feb 22, 2017
    Copy the full SHA
    f0a342f View commit details
  2. Copy the full SHA
    79eebac View commit details
Showing with 16,267 additions and 4,141 deletions.
  1. +6 −0 .eslintignore
  2. +20 −0 .eslintrc.json
  3. +2 −0 .gitignore
  4. +4 −0 .prettierrc
  5. +14 −5 .travis.yml
  6. 0 LICENSE-MIT → LICENSE
  7. +196 −58 README.md
  8. BIN assets/inquirer_readme.sketch
  9. +1 −0 assets/inquirer_readme.svg
  10. +1 −0 assets/screenshots/checkbox.svg
  11. +1 −0 assets/screenshots/confirm.svg
  12. +1 −0 assets/screenshots/expand-d.svg
  13. +1 −0 assets/screenshots/expand-y.svg
  14. +1 −0 assets/screenshots/input.svg
  15. +1 −0 assets/screenshots/list.svg
  16. +1 −0 assets/screenshots/password.svg
  17. +1 −0 assets/screenshots/rawlist.svg
  18. +12 −0 babel.config.js
  19. +0 −66 examples/checkbox.js
  20. +0 −39 examples/expand.js
  21. +0 −39 examples/input.js
  22. +0 −36 examples/list.js
  23. +0 −35 examples/long-list.js
  24. +0 −20 examples/nested-call.js
  25. +0 −16 examples/password.js
  26. +0 −32 examples/rawlist.js
  27. +0 −62 gulpfile.js
  28. +7 −0 lerna.json
  29. +0 −35 lib/objects/choice.js
  30. +0 −109 lib/objects/choices.js
  31. +0 −127 lib/prompts/base.js
  32. +0 −207 lib/prompts/checkbox.js
  33. +0 −106 lib/prompts/confirm.js
  34. +0 −260 lib/prompts/expand.js
  35. +0 −104 lib/prompts/input.js
  36. +0 −179 lib/prompts/list.js
  37. +0 −115 lib/prompts/password.js
  38. +0 −179 lib/prompts/rawlist.js
  39. +0 −67 lib/ui/baseUI.js
  40. +0 −101 lib/ui/bottom-bar.js
  41. +0 −116 lib/ui/prompt.js
  42. +0 −37 lib/utils/events.js
  43. +0 −37 lib/utils/paginator.js
  44. +0 −129 lib/utils/screen-manager.js
  45. +39 −69 package.json
  46. +48 −0 packages/checkbox/demo.js
  47. +112 −0 packages/checkbox/index.js
  48. +65 −0 packages/checkbox/package-lock.json
  49. +24 −0 packages/checkbox/package.json
  50. +16 −0 packages/confirm/demo.js
  51. +30 −0 packages/confirm/index.js
  52. +57 −0 packages/confirm/package-lock.json
  53. +27 −0 packages/confirm/package.json
  54. +220 −0 packages/core/index.js
  55. +52 −0 packages/core/lib/Paginator.js
  56. +9 −0 packages/core/lib/key.js
  57. +50 −0 packages/core/lib/readline.js
  58. +113 −0 packages/core/lib/screen-manager.js
  59. +20 −0 packages/core/lib/utils.js
  60. +122 −0 packages/core/package-lock.json
  61. +29 −0 packages/core/package.json
  62. +265 −0 packages/core/test.js
  63. +88 −0 packages/expand/demo.js
  64. +97 −0 packages/expand/index.js
  65. +65 −0 packages/expand/package-lock.json
  66. +24 −0 packages/expand/package.json
  67. +32 −0 packages/input/README.md
  68. +11 −0 packages/input/__snapshots__/test.js.snap
  69. +47 −0 packages/input/demo.js
  70. +33 −0 packages/input/index.js
  71. +57 −0 packages/input/package-lock.json
  72. +22 −0 packages/input/package.json
  73. +77 −0 packages/input/test.js
  74. +5 −10 { → packages/inquirer}/examples/bottom-bar.js
  75. +69 −0 packages/inquirer/examples/checkbox.js
  76. +25 −0 packages/inquirer/examples/editor.js
  77. +41 −0 packages/inquirer/examples/expand.js
  78. +91 −0 packages/inquirer/examples/hierarchical.js
  79. +55 −0 packages/inquirer/examples/input.js
  80. +38 −0 packages/inquirer/examples/list.js
  81. +34 −0 packages/inquirer/examples/long-list.js
  82. +22 −0 packages/inquirer/examples/nested-call.js
  83. +32 −0 packages/inquirer/examples/password.js
  84. +9 −7 { → packages/inquirer}/examples/pizza.js
  85. +34 −0 packages/inquirer/examples/rawlist.js
  86. +2 −2 { → packages/inquirer}/examples/recursive.js
  87. +47 −0 packages/inquirer/examples/rx-observable-array.js
  88. +40 −0 packages/inquirer/examples/rx-observable-create.js
  89. +6 −0 packages/inquirer/examples/spawn.js
  90. +4 −4 { → packages/inquirer}/examples/when.js
  91. +12 −7 { → packages/inquirer}/lib/inquirer.js
  92. +37 −0 packages/inquirer/lib/objects/choice.js
  93. +116 −0 packages/inquirer/lib/objects/choices.js
  94. +16 −13 { → packages/inquirer}/lib/objects/separator.js
  95. +148 −0 packages/inquirer/lib/prompts/base.js
  96. +254 −0 packages/inquirer/lib/prompts/checkbox.js
  97. +101 −0 packages/inquirer/lib/prompts/confirm.js
  98. +100 −0 packages/inquirer/lib/prompts/editor.js
  99. +276 −0 packages/inquirer/lib/prompts/expand.js
  100. +113 −0 packages/inquirer/lib/prompts/input.js
  101. +184 −0 packages/inquirer/lib/prompts/list.js
  102. +29 −0 packages/inquirer/lib/prompts/number.js
  103. +113 −0 packages/inquirer/lib/prompts/password.js
  104. +216 −0 packages/inquirer/lib/prompts/rawlist.js
  105. +83 −0 packages/inquirer/lib/ui/baseUI.js
  106. +100 −0 packages/inquirer/lib/ui/bottom-bar.js
  107. +124 −0 packages/inquirer/lib/ui/prompt.js
  108. +54 −0 packages/inquirer/lib/utils/events.js
  109. +54 −0 packages/inquirer/lib/utils/paginator.js
  110. +5 −5 { → packages/inquirer}/lib/utils/readline.js
  111. +142 −0 packages/inquirer/lib/utils/screen-manager.js
  112. +6 −6 { → packages/inquirer}/lib/utils/utils.js
  113. +357 −0 packages/inquirer/package-lock.json
  114. +54 −0 packages/inquirer/package.json
  115. +1 −1 { → packages/inquirer}/test/before.js
  116. +9 −0 packages/inquirer/test/bin/write.js
  117. +3 −3 { → packages/inquirer}/test/helpers/events.js
  118. +16 −10 { → packages/inquirer}/test/helpers/fixtures.js
  119. +3 −3 { → packages/inquirer}/test/helpers/readline.js
  120. +382 −0 packages/inquirer/test/specs/api.js
  121. +676 −0 packages/inquirer/test/specs/inquirer.js
  122. +10 −10 { → packages/inquirer}/test/specs/objects/choice.js
  123. +31 −24 { → packages/inquirer}/test/specs/objects/choices.js
  124. +36 −0 packages/inquirer/test/specs/objects/separator.js
  125. +10 −7 { → packages/inquirer}/test/specs/prompts/base.js
  126. +255 −0 packages/inquirer/test/specs/prompts/checkbox.js
  127. +27 −27 { → packages/inquirer}/test/specs/prompts/confirm.js
  128. +31 −0 packages/inquirer/test/specs/prompts/editor.js
  129. +162 −0 packages/inquirer/test/specs/prompts/expand.js
  130. +101 −0 packages/inquirer/test/specs/prompts/input.js
  131. +182 −0 packages/inquirer/test/specs/prompts/list.js
  132. +116 −0 packages/inquirer/test/specs/prompts/number.js
  133. +69 −0 packages/inquirer/test/specs/prompts/password.js
  134. +100 −0 packages/inquirer/test/specs/prompts/rawlist.js
  135. +16 −0 packages/password/demo.js
  136. +31 −0 packages/password/index.js
  137. +57 −0 packages/password/package-lock.json
  138. +27 −0 packages/password/package.json
  139. +48 −0 packages/select/demo.js
  140. +66 −0 packages/select/index.js
  141. +65 −0 packages/select/package-lock.json
  142. +23 −0 packages/select/package.json
  143. +0 −325 test/specs/api.js
  144. +0 −577 test/specs/inquirer.js
  145. +0 −36 test/specs/objects/separator.js
  146. +0 −224 test/specs/prompts/checkbox.js
  147. +0 −146 test/specs/prompts/expand.js
  148. +0 −38 test/specs/prompts/input.js
  149. +0 −172 test/specs/prompts/list.js
  150. +0 −24 test/specs/prompts/password.js
  151. +0 −75 test/specs/prompts/rawlist.js
  152. +8,345 −0 yarn.lock
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.git
node_modules
coverage
.nyc_output
packages/*/node_modules
packages/*/__snapshots__
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": ["xo", "prettier"],
"env": {
"mocha": true,
"jest": true,
"node": true
},
"rules": {
"no-eq-null": "off",
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"prettier/prettier": "error"
},
"plugins": ["prettier"]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules
coverage
.nyc_output
.idea
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"printWidth": 90
}
19 changes: 14 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
sudo: false
language: node_js
node_js:
- v0.10
- v0.12
- v4
- v5
- v6
- 8
- 10
- 12
- node
before_script:
- yarn bootstrap
script:
- yarn test
after_success:
- yarn codecov
env:
global:
- FORCE_COLOR=1
- secure: dHdnulkfL3Es9kaH0JVFwPk5VUeD7fdiMYdNaId09ZTa9mL9BvYcHmeVK5g1ZIm1F0+QmLeJwjO+4dq1yjRz6IFnpbgQSlhIbYjs+8zBc1v+HTZZfB/kFRIqHO0x4nJG8vKVa+Sg5tp0pI7hiCgevsrlvf4Pb6D0Cyx+faSGNrY=
File renamed without changes.
Loading