This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkspace.json
60 lines (60 loc) · 1.57 KB
/
workspace.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
{
"version": 2,
"projects": {
"core": "libs/core",
"grpc": "libs/grpc",
"grpc-playground": "apps/grpc-playground",
"identity": "libs/identity",
"openapi": "libs/openapi",
"playground": "apps/playground",
"routing": "libs/routing",
"workspace": {
"root": "libs",
"targets": {
"release": {
"executor": "@jscutlery/semver:version",
"options": {
"syncVersions": true,
"preset": "conventional",
"tagPrefix": "",
"baseBranch": "master",
"push": true,
"postTargets": [
"routing:publish",
"core:publish",
"identity:publish",
"openapi:publish",
"workspace:github"
]
}
},
"pre-release": {
"executor": "@jscutlery/semver:version",
"options": {
"preset": "conventional",
"tagPrefix": "",
"baseBranch": "beta",
"releaseAs": "prerelease",
"preid": "beta",
"push": true,
"postTargets": [
"routing:beta-publish",
"core:beta-publish",
"identity:beta-publish",
"openapi:publish",
"workspace:github"
]
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "${tag}",
"notes": "${notes}"
}
}
}
}
},
"$schema": "./node_modules/nx/schemas/workspace-schema.json"
}