-
Notifications
You must be signed in to change notification settings - Fork 31
/
lerna.json
30 lines (30 loc) · 903 Bytes
/
lerna.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"packages": ["packages/*", "portal"],
"version": "independent",
"npmClient": "pnpm",
"command": {
"publish": {
"conventionalCommits": true,
"registry": "https://registry.npmjs.org/",
"access": "public",
"npmClient": "pnpm",
"allowBranch": ["main", "release", "alpha-*"],
"ignoreChanges": [
".eslintrc",
".prettierrc",
".gitignore",
".npmignore",
".npmrc",
"*.md",
"*.mdx",
"*.test.js",
"*.test.ts",
"*.test.tsx",
"jest/**/*",
"**/documentation/**/*"
],
"message": "chore(release): publish [ci skip release]"
}
},
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}