Cameron Tacklind

Results 134 comments of Cameron Tacklind

Fixed in current versions I think

While it does automatically crawl the entire tree to find a `tsconfig.json` file, it will stop at the first one it finds. However, [TypeScript configuration does support "extending" another config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#configuration-inheritance-with-extends)...

@bengry Nice! I, personally, strongly feel that types should be directly included in published repos. Why force developers to download/add a second dependency? (This is rhetorical) I'm holding out for...

@bengry You are not wrong to publish to DT, especially considering the author of this package is not speaking up.

Yes, that works. But the point of this feature request is basically that the list of `dev:*` scripts should not be necessary. I'd (personally) rather `concurrently` automatically try each workspace's...

Personally, I think using the `yarn:` or `npm:` prefix is confusing and overloading of namespaces. Ideally, one could ignore that Yarn or Npm are used under the hood. `--workspaces` might...

@adambubenicek Nice. Better to use `node` binary directly so that you don't need `chmod +x` so that it works on Windows.

Hmmm, I'll want to look into this. Thanks for the PR.

I want to monitor a channel for certain words from certain users and be able to log/do something with those events. It feels like I would need plugin support to...

Smoke tests in front of more substantial tests save people time. Without the ability to short circuit subsequent test, the time saving is mitigated. Where does this functionality need to...