@anolilab/multi-semantic-release 1.0.2 → 1.0.3
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/CHANGELOG.md +7 -0
- package/README.md +4 -0
- package/lib/get-config.js +1 -1
- package/package.json +34 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.0.3](https://github.com/anolilab/multi-semantic-release/compare/v1.0.2...v1.0.3) (2023-12-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated dev deps and cosmiconfig to v9 ([569e401](https://github.com/anolilab/multi-semantic-release/commit/569e401c41ccbfd86dc718f2a32ab717cb3c5cc4))
|
|
7
|
+
|
|
1
8
|
## [1.0.2](https://github.com/anolilab/multi-semantic-release/compare/v1.0.1...v1.0.2) (2023-09-29)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -249,6 +249,8 @@ You can also combine the CLI ignore options with the `!` operator at each packag
|
|
|
249
249
|
|
|
250
250
|
We use this tool to release our JS platform code inhouse (GitHub Enterprise + JB TeamCity) and for our OSS (GitHub + Travis CI). Guaranteed working configurations available in projects.
|
|
251
251
|
|
|
252
|
+
- [anolilab/multi-semantic-release](https://github.com/anolilab/multi-semantic-release)
|
|
253
|
+
- [visulima/visulima](https://github.com/visulima/visulima)
|
|
252
254
|
- [qiwi/substrate](https://github.com/qiwi/substrate)
|
|
253
255
|
- [qiwi/json-rpc](https://github.com/qiwi/json-rpc)
|
|
254
256
|
- [qiwi/lint-config-qiwi](https://github.com/qiwi/lint-config-qiwi)
|
|
@@ -395,6 +397,8 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
395
397
|
|
|
396
398
|
- [Daniel Bannert](https://github.com/prisis)
|
|
397
399
|
- [All Contributors](https://github.com/anolilab/multi-semantic-release/graphs/contributors)
|
|
400
|
+
- [hanseltime](https://github.com/hanseltime) -> https://github.com/qiwi/multi-semantic-release/pull/96
|
|
401
|
+
- [lyh543](https://github.com/lyh543) -> https://github.com/dhoulb/multi-semantic-release/issues/111
|
|
398
402
|
- [dhoub/multi-semantic-release](https://github.com/dhoulb/multi-semantic-release)
|
|
399
403
|
- [qiwi/multi-semantic-release](https://github.com/qiwi/multi-semantic-release)
|
|
400
404
|
|
package/lib/get-config.js
CHANGED
|
@@ -25,7 +25,7 @@ const CONFIG_FILES = [
|
|
|
25
25
|
*/
|
|
26
26
|
export default async function getConfig(cwd) {
|
|
27
27
|
// Call cosmiconfig.
|
|
28
|
-
const config = await cosmiconfig(CONFIG_NAME, { searchPlaces: CONFIG_FILES }).search(cwd);
|
|
28
|
+
const config = await cosmiconfig(CONFIG_NAME, { mergeSearchPlaces: false, searchPlaces: CONFIG_FILES }).search(cwd);
|
|
29
29
|
|
|
30
30
|
// Return the found config or empty object.
|
|
31
31
|
// istanbul ignore next (not important).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/multi-semantic-release",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A multi semantic release tool for
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "A multi semantic release tool for a monorepo.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/anolilab/multi-semantic-release.git"
|
|
@@ -31,12 +31,14 @@
|
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "echo 'There is no need for build' && exit 0",
|
|
34
|
-
"prepare": "is-ci || (node verify-node-version.cjs && pnpx only-allow pnpm && husky install)",
|
|
35
34
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
36
35
|
"lint:eslint:fix": "pnpm run lint:eslint --fix",
|
|
37
36
|
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
38
37
|
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
39
38
|
"lint:staged": "lint-staged --verbose --concurrent false --debug",
|
|
39
|
+
"lint:text": "textlint ./.github/ ./README.md ./UPGRADE.md --parallel --experimental --cache --dry-run",
|
|
40
|
+
"lint:text:fix": "textlint ./.github/ ./README.md ./UPGRADE.md --parallel --experimental --fix",
|
|
41
|
+
"prepare": "is-ci || (node verify-node-version.cjs && pnpx only-allow pnpm && husky install)",
|
|
40
42
|
"sort-package-json": "sort-package-json ./package.json",
|
|
41
43
|
"test": "vitest run",
|
|
42
44
|
"test:bench": "vitest bench",
|
|
@@ -47,7 +49,7 @@
|
|
|
47
49
|
"dependencies": {
|
|
48
50
|
"@semrel-extra/topo": "^1.14.0",
|
|
49
51
|
"blork": "^9.3.0",
|
|
50
|
-
"cosmiconfig": "^
|
|
52
|
+
"cosmiconfig": "^9.0.0",
|
|
51
53
|
"debug": "^4.3.4",
|
|
52
54
|
"detect-indent": "^7.0.1",
|
|
53
55
|
"detect-newline": "^4.0.1",
|
|
@@ -61,52 +63,50 @@
|
|
|
61
63
|
"yargs": "^17.7.2"
|
|
62
64
|
},
|
|
63
65
|
"devDependencies": {
|
|
64
|
-
"@anolilab/commitlint-config": "^
|
|
65
|
-
"@anolilab/eslint-config": "^
|
|
66
|
-
"@anolilab/lint-staged-config": "^2.
|
|
67
|
-
"@anolilab/prettier-config": "^5.0.
|
|
68
|
-
"@anolilab/textlint-config": "^8.0.
|
|
69
|
-
"@babel/core": "^7.23.
|
|
70
|
-
"@babel/eslint-parser": "7.
|
|
71
|
-
"@commitlint/
|
|
72
|
-
"@
|
|
73
|
-
"@secretlint/secretlint-rule-preset-recommend": "^
|
|
66
|
+
"@anolilab/commitlint-config": "^5.0.2",
|
|
67
|
+
"@anolilab/eslint-config": "^15.0.2",
|
|
68
|
+
"@anolilab/lint-staged-config": "^2.1.6",
|
|
69
|
+
"@anolilab/prettier-config": "^5.0.13",
|
|
70
|
+
"@anolilab/textlint-config": "^8.0.15",
|
|
71
|
+
"@babel/core": "^7.23.5",
|
|
72
|
+
"@babel/eslint-parser": "7.23.3",
|
|
73
|
+
"@commitlint/cli": "^18.4.3",
|
|
74
|
+
"@commitlint/config-conventional": "^18.4.3",
|
|
75
|
+
"@secretlint/secretlint-rule-preset-recommend": "^8.0.0",
|
|
74
76
|
"@semantic-release/changelog": "^6.0.3",
|
|
75
77
|
"@semantic-release/git": "^10.0.1",
|
|
76
|
-
"@semantic-release/github": "^9.2.
|
|
77
|
-
"@semantic-release/npm": "^11.0.
|
|
78
|
-
"@vitest/coverage-v8": "^0.34.
|
|
78
|
+
"@semantic-release/github": "^9.2.4",
|
|
79
|
+
"@semantic-release/npm": "^11.0.1",
|
|
80
|
+
"@vitest/coverage-v8": "^0.34.6",
|
|
79
81
|
"commitizen": "^4.3.0",
|
|
80
|
-
"commitlint": "^
|
|
82
|
+
"commitlint": "^18.4.3",
|
|
81
83
|
"cross-env": "^7.0.3",
|
|
82
84
|
"cz-conventional-changelog": "^3.3.0",
|
|
83
|
-
"eslint": "^8.
|
|
84
|
-
"eslint-config-prettier": "^9.0.0",
|
|
85
|
+
"eslint": "^8.55.0",
|
|
85
86
|
"eslint-plugin-editorconfig": "^4.0.3",
|
|
86
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@2.
|
|
87
|
+
"eslint-plugin-import": "npm:eslint-plugin-i@2.29.0",
|
|
87
88
|
"eslint-plugin-mdx": "^2.2.0",
|
|
88
|
-
"eslint-plugin-n": "^16.1
|
|
89
|
-
"eslint-plugin-
|
|
90
|
-
"eslint-plugin-vitest": "^0.3.1",
|
|
89
|
+
"eslint-plugin-n": "^16.3.1",
|
|
90
|
+
"eslint-plugin-vitest": "^0.3.10",
|
|
91
91
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
92
92
|
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
|
|
93
93
|
"file-url": "^4.0.0",
|
|
94
94
|
"husky": "^8.0.3",
|
|
95
95
|
"is-ci": "^3.0.1",
|
|
96
|
-
"lint-staged": "^
|
|
97
|
-
"prettier": "^3.0
|
|
96
|
+
"lint-staged": "^15.2.0",
|
|
97
|
+
"prettier": "^3.1.0",
|
|
98
98
|
"rimraf": "^5.0.5",
|
|
99
|
-
"secretlint": "
|
|
100
|
-
"semantic-release": "^22.0.
|
|
101
|
-
"sort-package-json": "^2.
|
|
99
|
+
"secretlint": "8.0.0",
|
|
100
|
+
"semantic-release": "^22.0.8",
|
|
101
|
+
"sort-package-json": "^2.6.0",
|
|
102
102
|
"tempy": "^3.1.0",
|
|
103
|
-
"textlint": "^13.
|
|
104
|
-
"vitest": "^0.34.
|
|
103
|
+
"textlint": "^13.4.1",
|
|
104
|
+
"vitest": "^0.34.6"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
107
107
|
"semantic-release": "^20.0 || ^21.0 || >=22.0.3"
|
|
108
108
|
},
|
|
109
|
-
"packageManager": "pnpm@8.
|
|
109
|
+
"packageManager": "pnpm@8.11.0",
|
|
110
110
|
"engines": {
|
|
111
111
|
"node": ">=18 || >=20.6.1"
|
|
112
112
|
},
|
|
@@ -134,7 +134,8 @@
|
|
|
134
134
|
"trim@<0.0.3": ">=0.0.3",
|
|
135
135
|
"chrono-node@<2.2.4": ">=2.2.4",
|
|
136
136
|
"get-func-name@<2.0.1": ">=3.0.0",
|
|
137
|
-
"chai": ">=4.3.10"
|
|
137
|
+
"chai": ">=4.3.10",
|
|
138
|
+
"postcss@<8.4.31": ">=8.4.31"
|
|
138
139
|
}
|
|
139
140
|
}
|
|
140
141
|
}
|