New Feature
Add publishConfig and ignore option for publishing (#118)
There is a new option for the lerna config. Pass an array of files (run with minimatch) to filter out when publishing. This is useful for filtering out changes for tests or README files.
// lerna.json
{
"publishConfig": {
"ignore": [
"ignored-file",
"*.md"
]
}
}