Skip to content

Commit

Permalink
gh-pages: fix invalid routing links
Browse files Browse the repository at this point in the history
corrects some invalid page links that prevented production build from
completing
  • Loading branch information
esatterwhite committed Apr 25, 2021
1 parent 869b2cb commit d58c70b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions gh-pages/guides/interactive.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
prev: ../commands
prev: ./commands
next: ./plugins
---

Expand Down Expand Up @@ -90,7 +90,7 @@ The result will be passed to the command as a single array just as it would from

<<< @/gh-pages/examples/commands/multichoice.js{10,13}

![choices](../assets/img/guides/interactive-multichoice.gif)
![multiple choice](../assets/img/guides/interactive-multichoice.gif)

## Conditional Flags

Expand All @@ -113,6 +113,6 @@ The Prompt function is a direct pass through to the [inquirer][] prompt function

<<< @/gh-pages/examples/commands/manual.js{16-24}

![conditional](../assets/img/guides/interactive-manual.gif)
![manual prompts](../assets/img/guides/interactive-manual.gif)

[inquirer]: https://www.npmjs.com/package/inquirer
8 changes: 4 additions & 4 deletions gh-pages/guides/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ to interact and communicate with users.

## Progress Indicators

Seeli commands have access to an instance of [ora](https://www.npmjs.com/package/ora) inside the `run` function.
Seeli commands have access to an instance of [ora][] inside the `run` function.
It can be controlled by the `ui` property. Additionally, you may use `ui` configuration
property to change the progress spinner to any valid ora spinner.

Expand Down Expand Up @@ -55,7 +55,7 @@ You must call `this.ui.start(...)` again to restart it

## Prompts

Seeli uses the [inquirer](https://www.npmjs.com/package/inquirer) to interactively collect input
Seeli uses the [inquirer][] to interactively collect input
from users. This functionality is exposed via the `prompt` function.
This is a direct passthrough the the inquirer function of the [same name](https://www.npmjs.com/package/inquirer#inquirerpromptquestions---promise).
This makes things like conditional and branching logic based on user input
Expand All @@ -65,5 +65,5 @@ significantly easier.
![prompts](../assets/img/guides/ui-prompts.gif)


[inquirer]:
[ora]:
[inquirer]: https://www.npmjs.com/package/inquirer
[ora]: https://www.npmjs.com/package/ora

0 comments on commit d58c70b

Please sign in to comment.