Max Schwenk
Max Schwenk
I highly recommend turning off `public-hoist-pattern[]` completely. We had it on for years with a large monorepo and it caused us unbelievable issues because we had phantom `@types` dependencies that...
@liath want to take a look?
We currently don’t have our own use case for this, but PRs are welcome as it sounds like it could be useful to others
@petemounce you can set the style https://github.com/bugcrowd/test-summary-buildkite-plugin#other-options Does that not cover your use case?
We currently don’t have our own use case for this, but PRs are welcome as it sounds like it could be useful to others
@cuichenli / @ianks would the work done in this https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/64 help?
I wonder if there's really any benefit to caching node_modules? `pnpm install` is primarily just downloading your node modules, so a cache of that is going to...download your node modules....
@kraenhansen yeah `only` I believe is just for ignoring dependencies of pipeline commands, so if you had `test` depending on `build` you could skip running build when you call test...
Ok looks like one way I'm able to achieve what I want is: ```json "pipeline": { "build": {}, "buildAllWithDependents": { "dependsOn": ["^build"] } }, ``` and then I can choose...
@kraenhansen noting that the above doesn't actually work, because calling `turbo build` as defined above will mean that the packages won't build their dependencies, but they also won't build in...