Andrew Lisowski

Results 487 comments of Andrew Lisowski

Count me as another person who has to downgrade due to bundle size. After upgrading to v2 my components bundle size increased by 16.56 kB. Looking at the code for...

You're trying to omit a certain item from the changelog which is a little different from the [Release Notes](https://intuit.github.io/auto/docs/generated/changelog#additional-release-notes) feature. What you are looking for is the [omit commits plugin](https://intuit.github.io/auto/docs/generated/omit-commits)...

That's not really the intended use case for that flag so I'm surprised it works at all tbh. This really goes back to #1054 which hasn't been resolved. The main...

I think this would mean that we have to update anywhere we use the afterShipIt hook since right now we assume we are shipping something. This would also be a...

@jBouyoud Route 2 sounds like a great option! I like how we would then have the beforeRun/afterRun combo.

Can you post a run of `auto version -vv` and post the output here? My intuition says that you have a PR with a label that makes auto skip the...

I'm having trouble reproducing this locally. The changelogs I get by running `auto changelog -d --from 0.10.0 --to cbdd48ff203e29c248adec5d43921da89d07737c` give me the correct PR numbers. Could you add `-vv` to...

Ah true, didn't think of that. Hard to get around too, the only thing I can think of is writing it to a tmp file for the exec plugin to...

Thinking about it a little more I would probably make more sense to introduce a new top level config option. ```js { // Still have some global config at root...

With this setup you could really skip out on lerna all together ```js { "name": "Andrew Lisowski", "email": "[email protected]", "packages": [ { "target": "packages/**", "plugins": ["npm"] } ] } ```...