hacky [semantic-release](https://github.com/semantic-release/semantic-release) for monorepos
npm install @dylanvann/multi-semantic-release



This fork of dhoub/multi-semantic-release replaces setImmediate loops
and execa.sync hooks with event-driven flow and finally makes possible to run the most release operations in parallel.
š š š
``sh`
yarn add @qiwi/multi-semantic-release --dev
`sh`
multi-semantic-release
is extremely useful if all the modules have the same strategy of release).
NOTE config resolver joins globalConfig and packageConfig during execution.
`javascript
// Load the package-specific options.
const { options: pkgOptions } = await getConfig(dir);// The 'final options' are the global options merged with package-specific options.
// We merge this ourselves because package-specific options can override global options.
const finalOptions = Object.assign({}, globalOptions, pkgOptions);
``