Alec Larson

Results 479 comments of Alec Larson

Same goes for `indo link` Progress is tracked in https://github.com/alloc/indo/tree/wip/efficient-link

And store the dependency map of each local package in `/.indo-cache` to automatically update dependencies when indo runs.

This should be easy now that we have https://github.com/aleclarson/cush-shell

Note: This would affect vendor repos too, whereas `indo git pull` only affects non-vendor repos.

Perhaps pulling should be automatic (on `indo` default command) for repos with no changes.

In the absence of `.indo.json`, the "indo root" should be assumed to be where the nearest `.git` directory exists.

I see the docs folder. Is that accessible anywhere?

> That syntax will work. It will search for `@bar/baz` in the repository before searching in the registry I'm getting `ERR_PNPM_FETCH_404  GET https://registry.npmjs.org/@alloc%2Fpath-types: Not Found - 404` error with pnpm...

So this is kind of like combining `select` with `Object.entries` and `Object.fromEntries` (and yours is obviously more performant). ```ts Object.fromEntries( select( Object.entries(object), ([key]) => key !== 'power', ([key, value]) =>...