-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtcc-cli-config.js
44 lines (44 loc) · 1.06 KB
/
tcc-cli-config.js
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
module.exports = {
"merges": [
[
"master",
"v02/01-create-workspace",
],
[
"v02/01-create-workspace",
"v02/02-create-lib",
],
[
"v02/02-create-lib",
"v02/03-constraints",
],
[
"v02/03-constraints",
"v02/04-backend-appointments-list",
],
[
"v02/04-backend-appointments-list",
"v02/05-frontend-appointment-list",
],
[
"v02/05-frontend-appointment-list",
"v02/06-frontend-appointment-details",
],
[
"v02/06-frontend-appointment-details",
"v02/07-backend-appointment-details",
],
[
"v02/07-backend-appointment-details",
"v02/08-frontend-working-hours",
],
[
"v02/08-frontend-working-hours",
"v02/09-shared-working-hours",
],
[
"v02/09-shared-working-hours",
"v02/10-testing"
],
],
};