Alec Larson

Results 407 issues of Alec Larson

This makes the cursor(s) appear above the indent guide. My testing shows the indent guide position is unaffected, which is good.

https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5

### Description The `entryRoot` option allows customization of Vite's dev server and its Rollup build. - For the dev server, it determines the root directory used by the `htmlFallbackMiddleware` and...

NodeJS programs have an exit code of zero by default, so there's no need for any code here.

The function name seems unnecessarily long, so I changed it to `returnTrue`. And the NPM tarball will now contain `index.js`, `bin/cli.js`, `README.md`, and `package.json`.

Config: ```js module.exports = { input: 'styles/index.js', output: { format: 'cjs' }, plugins: [ require('rollup-plugin-collect-sass')({ importOnce: true, include: ['styles/**/*.sass'], extract: 'index.css' }) ] } ``` Input: ``` ./node_modules/.bin/rollup -c rollup.config.js...

If I use the npm package scope `@foo` for npm forks, I should be able to tell Indo to treat `@foo/bar` as a suitable alias for `bar` (assuming `vendor/@foo/bar` exists...

enhancement

It can be useful to link all packages in the repo into my global registry at once.

enhancement

```sh indo link foo:@aleclarson/foo ``` The command above would: - link `./vendor/@aleclarson/foo` to `~/.indo/packages/@aleclarson/foo` - set `alias.foo` to `@aleclarson/foo` in the local `.indo.json` file

enhancement

If a package linked to from the global registry is deleted, any `indo link ` commands should warn instead of quietly linking to a non-existent directory

bug