Nick Heiner
Nick Heiner
 I'd like the ability to customize the hotkey options available to the user for multiselect. My dream is to have something like `git add -p`, where you get hotkeys...
When I pass a relative path, and `gitignore: true`, I get an error. [Demo repo](https://github.com/NickHeiner/globby-relative-path-demo) ```js const path = require('path'); const globby = require('globby'); console.log(globby.sync( ['..'], {cwd: path.join(__dirname, 'node_modules'), gitignore:...
### Bug description When I try to run a `yarn workspace` command, it fails: **Command** ``` λ yarn workspaces info yarn workspaces v1.22.4 { "yarn-fixed-version-demo-dependency-of-both": { "location": "yarn-fixed-version-dependency-of-both", "workspaceDependencies": [],...
The example shows how to create a site like: ``` main/ API v1/ API v2/ ``` Is it possible to link between docs in `API v1` and `API v2`?
Super small grammar nit. :smile:
Small grammar fix.
Part of https://github.com/airbnb/ts-migrate/issues/168
Hi. I recently used ts-migrate, in conjunction with [my own codemod runner](https://github.com/NickHeiner/jscodemod), to migrate large portions of my codebase to TS. It was fun! Along the way, I made a...
I ran `ts-migrate reignore .` on my codebase. When I run `tsc`, I get a bunch of errors. I made sure that the version of `tsc` I'm using matches what...
When I ran `ts-migrate reignore`, it helpfully upgraded `ts-ignore`s to `ts-expect-error`s. However, in doing so, it removed some of the comments I had on the `ts-ignore`s: ```diff - // @ts-ignore:...