purescript-docs-search
purescript-docs-search copied to clipboard
Search frontend for the documentation generated by the PureScript compiler
Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1. Commits 3b0994a 2.0.1 32f468f lib: fixed CVE-2023-42282 and added unit test See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any...
Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...
Steps to replicate: ```spago init spago build spago docs spago test ``` So far everything works as expected. But now run ``` spago docs ``` again. It does create most...
Bumps [ws](https://github.com/websockets/ws) from 7.4.4 to 7.5.9. Release notes Sourced from ws's releases. 7.5.9 Bug fixes Backported bc8bd34e to the 7.x release line (0435e6e1). 7.5.8 Bug fixes Backported 0fdcc0af to the...
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
Sometimes we don't want to pollute the namespace with prelude and other dependencies, i.e. we want to just search the local package. The Ask: Make it possible to pass a...
As for now, we do something like `fromMaybe defaultCommands getArgs` where `getArgs :: Effect (Maybe Commands)`. The default command is `Search` (i.e. start an interactive CLI session) with some reasonable...
Currently, we are printing the results reversed, so that the most relevant ones appear last. That makes sense, because that way there's no need to scroll. However, using `$PAGER` when...
Today I tried the functionality via `spago search` CLI. Searching for individual names works great! But what I miss is some kind of "show everything" or "focus on one module"...
As for now we output raw markdown, but this should be changed. We need to wrap one of Node markdown renderers into a PS interface. Candidates are: https://github.com/trabus/markdown-it-terminal https://github.com/mikaelbr/marked-terminal The...