kubrick/lerna.json
2024-09-18 21:48:53 +07:00

41 lines
810 B
JSON

{
"$schema": "./node_modules/lerna/schemas/lerna-schema.json",
"version": "independent",
"packages": [
"packages/*"
],
"command": {
"version": {
"message": "Version bump",
"allowBranch": ["main"],
"changelog": false,
"private": false,
"push": true,
"exact": true,
"ignoreChanges": [
"**/*.md",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.stories.ts",
"**/*.stories.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.yml",
"**/test/**",
".*",
".**/**",
".config.*",
"Dockerfile",
"tsconfig.*"
]
},
"publish": {
"preDistTag": "next",
"private": false,
"ignoreChanges": [
"ignored-file",
"*.md"
]
}
}
}