-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.5 KB
/
package.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
{
"name": "dotto.x.monorepo",
"version": "0.4.1",
"main": "index.js",
"repository": "https://github.com/dottostack/dotto.x.git",
"author": "Eddort <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/eslint/**",
"**/jest/**"
]
},
"simple-git-hooks": {
"pre-push": "yarn test"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.19",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^14.11.5",
"release-it-yarn-workspaces-clean-publish": "^0.0.4",
"yarn-changed-workspaces": "^2.0.10"
},
"scripts": {
"test": "yarn workspaces foreach --include $(node ./scripts/changes.js) run test",
"release": "release-it --only-version"
},
"release-it": {
"npm": false,
"git": {
"commitMessage": "chore(release): v${version}"
},
"hooks": {
"after:bump": [
"yarn"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true,
"preset": {
"name": "conventionalcommits"
}
},
"release-it-yarn-workspaces-clean-publish": true
}
}
}