-
Notifications
You must be signed in to change notification settings - Fork 161
/
lerna.json
45 lines (45 loc) · 1.23 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"packages": [
"packages/*"
],
"version": "0.37.3",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
"publish": {
"registry": "http://localhost:4873"
},
"version": {
"allowBranch": [
"development",
"feat/better-fetch",
"hotfix/*",
"add-locale-support"
],
"message": "chore(release): 'publish %s'"
}
},
"changelog": {
"repo": "teleporthq/teleport-code-generators",
"cacheDir": ".changelog",
"ignoreCommitters": [
"allcontributors",
"dependabot"
],
"labels": {
"enhancement": ":rocket: New Features",
"react generators": ":electric_plug: React Generators",
"vue generators": ":electric_plug: Vue Generators",
"angular generators": ":electric_plug: Angular Generators",
"stencil generators": ":electric_plug: Stencil Generators",
"preact generators": ":electric_plug: Preact Generators",
"style flavours": ":nail_care: Style Flavours",
"packer": ":package: Project Packer",
"core": ":earth_asia: Core",
"bug": ":bug: Bug Fix",
"uidl": ":crystal_ball: UIDL",
"dev experience": ":house: Dev Experience",
"refactoring": ":fire: Refactoring"
}
}
}