-
Notifications
You must be signed in to change notification settings - Fork 72
/
lerna.json
87 lines (87 loc) · 2.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"packages": [
"packages/core",
"packages/cli",
"packages/cache",
"packages/file-utils",
"packages/feature-toggle",
"packages/custom-sf-changelog/",
"services/*",
"facades/*",
"sandbox/**"
],
"command": {
"version": {
"conventionalCommits": true,
"message": "chore: publish release",
"allowBranch": "master"
},
"publish": {
"conventionalCommits": true,
"message": "chore: publish release",
"allowBranch": "master",
"noPrivate": true,
"graphType": "all"
},
"run": {
"concurrency": 1,
"ignore": [
"@sourceloop/audit-ms-example",
"@sourceloop/auth-ms-basic-example",
"@sourceloop/auth-multitenant-example",
"@sourceloop/in-mail-example",
"@sourceloop/schedular-example",
"@sourceloop/notification-socket-example",
"@sourceloop/video-conferencing-ms-example",
"@sourceloop/workflow-ms-example",
"@sourceloop/pubnub-example",
"@sourceloop/chat-notif-example_facade",
"@sourceloop/chat-notif-example_ui",
"@sourceloop/chat-notif-example_chat-service",
"@sourceloop/chat-notif-example_notif-service",
"@sourceloop/search-ms-example",
"@sourceloop/search-client-example",
"@sourceloop/feature-toggle-example",
"@sourceloop/payment-example-backend",
"@sourceloop/payment-example-frontend",
"@sourceloop/user-onboarding-example",
"@sourceloop/cache-example",
"@sourceloop/user-tenant-example",
"@sourceloop/chat-notif-example-facade-socket",
"@sourceloop/chat-notif-example-ui-socket",
"@sourceloop/chat-notif-example-chat-socket",
"@sourceloop/chat-notif-example-notif-socket",
"@sourceloop/example-socketio",
"@sourceloop/oauth-example-api",
"@sourceloop/oauth-example-ui",
"@sourceloop/oidc-basic-example",
"@sourceloop/nestjs-auth-ms-example",
"@sourceloop/telemed-app-ui",
"@sourceloop/telemed-auth-api",
"@sourceloop/telemed-notification-api",
"@sourceloop/telemed-video-conferencing-api",
"@sourceloop/telemed-auth-cdktf",
"@sourceloop/auth-public-private-client",
"@sourceloop/telemed-video-conferencing-cdktf",
"@sourceloop/telemed-notification-cdktf",
"@sourceloop/telemed-ui-cdk",
"@sourceloop/task-service-example"
]
},
"clean": {
"loglevel": "silent",
"concurrency": 8,
"yes": true
}
},
"changelogPreset": "custom-sf-changelog",
"ignoreChanges": [
"sandbox/**",
"**/__fixtures__/**",
"**/__tests__/**",
"**/*.md",
"packages/core/locales/**"
],
"version": "independent",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}