-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
37 lines (37 loc) · 1.14 KB
/
Copy pathproject.json
File metadata and controls
37 lines (37 loc) · 1.14 KB
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
{
"name": "workspace",
"$schema": "node_modules/nx/schemas/project-schema.json",
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"baseBranch": "develop",
"changelogHeader": "<br/>👨 Developed and maintained with ❤️ by [PeopleSourcePlus](https://peoplesourceplus.com)<br/>",
"commitMessageFormat": "build(release): version v${version}",
"commitParserOptions": {
"headerCorrespondence": [
"ticketReference",
"type",
"scope",
"subject"
],
"headerPattern": "^([A-Z]{3,}-\\d{1,5}):? (chore|build|ci|docs|feat|fix|perf|refactor|test)(?:\\(([\\w-]+)\\))?\\S* (.+)$"
},
"preset": "conventional",
"skipCommitTypes": [],
"skipProjectChangelog": true,
"skipRootChangelog": false,
"syncVersions": true,
"tagPrefix": "v"
}
}
}
}