oyster/lerna.json

23 lines
449 B
JSON
Raw Permalink Normal View History

2021-02-09 16:26:06 -08:00
{
"lerna": "3.4.3",
"version": "independent",
2021-02-15 09:02:39 -08:00
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
2021-02-09 16:26:06 -08:00
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
2021-02-15 09:02:39 -08:00
},
"ignoreChanges": [
"**/__tests__/**",
"**/*.md"
],
"command": {
"publish": {
"conventionalCommits": true,
"allowBranch": ["master", "next"],
"message": "chore(release): Publish"
}
2021-02-09 16:26:06 -08:00
}
}