Christophe Gaube

Results 7 comments of Christophe Gaube

One alternative you can do until this is managed via commitzen is to use the `-e` option when committing ``` git cz -a -e ``` it will trigger the helper...

All your commits message type are either "ci" and "chore" - none of them have a "BREAKING CHANGE: XXX" semantic-release sees that and say - "no new version has to...

Little plugin to ignore those pesky warnings ``` const muteWarningsPlugin = (warningsToIgnore: string[][]): Plugin => { const mutedMessages = new Set() return { name: 'mute-warnings', enforce: 'pre', config: (userConfig) =>...

So your module is kind-of a mix and matches of the options I described You are using a new configuration in the module.config files that defines what listeners should be...

> If you want to use delegators, you should be sure that a complete event manager with the shared event manager is injected in the object. This is what I...

Probably because I did not know/check that zend-mvc was defining a service called "EventManager" that was automatically inject the default SharedEventManager. This is why I opened that discussion - I...