@newhighsco/release-config 1.1.6 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.js +1 -1
- package/package.json +8 -60
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ New High Score [shareable config](https://semantic-release.gitbook.io/semantic-r
|
|
|
7
7
|
Install semantic-relase and `@newhighsco/release-config`:
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
|
|
10
|
+
yarn add -D semantic-release @newhighsco/release-config
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Usage
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,88 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newhighsco/release-config",
|
|
3
3
|
"description": "New High Score shareable config for semantic-release",
|
|
4
|
-
"version": "1.1
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"author": "New High Score <hello@newhighsco.re>",
|
|
6
6
|
"license": "ISC",
|
|
7
|
+
"private": false,
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/newhighsco/
|
|
10
|
+
"url": "https://github.com/newhighsco/config.git",
|
|
11
|
+
"directory": "packages/release-config"
|
|
10
12
|
},
|
|
11
|
-
"homepage": "https://github.com/newhighsco/release-config#readme",
|
|
13
|
+
"homepage": "https://github.com/newhighsco/config/tree/main/packages/release-config#readme",
|
|
12
14
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/newhighsco/
|
|
15
|
+
"url": "https://github.com/newhighsco/config/issues"
|
|
14
16
|
},
|
|
15
17
|
"main": "index.js",
|
|
16
18
|
"files": [
|
|
17
19
|
"orb.js"
|
|
18
20
|
],
|
|
19
21
|
"scripts": {
|
|
20
|
-
"test": "
|
|
21
|
-
"lint": "npm-run-all --parallel lint:*",
|
|
22
|
-
"lint:js": "eslint --cache --ext .js,.jsx,.json .",
|
|
23
|
-
"format": "npm-run-all --parallel format:*",
|
|
24
|
-
"format:js": "npm run lint:js -- --fix"
|
|
22
|
+
"test": "echo 'No test specified'"
|
|
25
23
|
},
|
|
26
24
|
"dependencies": {
|
|
27
25
|
"@semantic-release/changelog": "6.0.1",
|
|
28
26
|
"@semantic-release/commit-analyzer": "9.0.2",
|
|
29
27
|
"@semantic-release/git": "10.0.1",
|
|
30
|
-
"@semantic-release/github": "8.0.
|
|
28
|
+
"@semantic-release/github": "8.0.4",
|
|
31
29
|
"@semantic-release/npm": "9.0.1",
|
|
32
30
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
33
31
|
"semantic-release-circleci-orb": "1.1.1"
|
|
34
32
|
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@commitlint/cli": "16.2.1",
|
|
37
|
-
"@newhighsco/commitlint-config": "1.0.23",
|
|
38
|
-
"@newhighsco/editor-config": "1.1.2",
|
|
39
|
-
"@newhighsco/eslint-config": "3.1.9",
|
|
40
|
-
"@newhighsco/prettier-config": "2.0.16",
|
|
41
|
-
"eslint": "8.10.0",
|
|
42
|
-
"husky": "7.0.4",
|
|
43
|
-
"npm-run-all": "4.1.5",
|
|
44
|
-
"prettier": "2.5.1",
|
|
45
|
-
"semantic-release": "19.0.2"
|
|
46
|
-
},
|
|
47
33
|
"peerDependencies": {
|
|
48
34
|
"semantic-release": "19.0.2"
|
|
49
|
-
},
|
|
50
|
-
"commitlint": {
|
|
51
|
-
"extends": [
|
|
52
|
-
"@newhighsco"
|
|
53
|
-
]
|
|
54
|
-
},
|
|
55
|
-
"eslintConfig": {
|
|
56
|
-
"extends": [
|
|
57
|
-
"@newhighsco"
|
|
58
|
-
]
|
|
59
|
-
},
|
|
60
|
-
"husky": {
|
|
61
|
-
"hooks": {
|
|
62
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"prettier": "@newhighsco/prettier-config",
|
|
66
|
-
"release": {
|
|
67
|
-
"extends": ".",
|
|
68
|
-
"branches": [
|
|
69
|
-
"main"
|
|
70
|
-
]
|
|
71
|
-
},
|
|
72
|
-
"renovate": {
|
|
73
|
-
"extends": [
|
|
74
|
-
"@newhighsco"
|
|
75
|
-
],
|
|
76
|
-
"baseBranches": [
|
|
77
|
-
"main"
|
|
78
|
-
],
|
|
79
|
-
"packageRules": [
|
|
80
|
-
{
|
|
81
|
-
"extends": [
|
|
82
|
-
"monorepo:semantic-release"
|
|
83
|
-
],
|
|
84
|
-
"semanticCommitType": "fix"
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
35
|
}
|
|
88
36
|
}
|