semantic-release 24.2.2 → 24.2.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/index.d.ts +10 -0
- package/package.json +6 -4
package/index.d.ts
CHANGED
|
@@ -41,6 +41,11 @@ declare module "semantic-release" {
|
|
|
41
41
|
* Has error, log, warn and success methods.
|
|
42
42
|
*/
|
|
43
43
|
logger: Signale<"error" | "log" | "success" | "warn">;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Semantic release configuration
|
|
47
|
+
*/
|
|
48
|
+
options: Options;
|
|
44
49
|
}
|
|
45
50
|
|
|
46
51
|
/**
|
|
@@ -668,6 +673,11 @@ declare module "semantic-release" {
|
|
|
668
673
|
*/
|
|
669
674
|
ci?: boolean | undefined;
|
|
670
675
|
|
|
676
|
+
/**
|
|
677
|
+
* Set to true when the `ci` option is set to false.
|
|
678
|
+
*/
|
|
679
|
+
noCi?: true;
|
|
680
|
+
|
|
671
681
|
/**
|
|
672
682
|
* Any other options supported by plugins.
|
|
673
683
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release",
|
|
3
3
|
"description": "Automated semver compliant package publishing",
|
|
4
|
-
"version": "24.2.
|
|
4
|
+
"version": "24.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
|
7
7
|
"ava": {
|
|
@@ -58,6 +58,8 @@
|
|
|
58
58
|
"yargs": "^17.5.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
+
"@types/node": "^22.13.4",
|
|
62
|
+
"@types/signale": "^1.4.7",
|
|
61
63
|
"ava": "6.2.0",
|
|
62
64
|
"c8": "10.1.3",
|
|
63
65
|
"clear-module": "4.1.2",
|
|
@@ -65,7 +67,7 @@
|
|
|
65
67
|
"dockerode": "4.0.4",
|
|
66
68
|
"file-url": "4.0.0",
|
|
67
69
|
"fs-extra": "11.3.0",
|
|
68
|
-
"got": "14.4.
|
|
70
|
+
"got": "14.4.6",
|
|
69
71
|
"js-yaml": "4.1.0",
|
|
70
72
|
"lockfile-lint": "4.14.0",
|
|
71
73
|
"ls-engines": "0.9.3",
|
|
@@ -73,8 +75,8 @@
|
|
|
73
75
|
"nock": "14.0.1",
|
|
74
76
|
"npm-run-all2": "7.0.2",
|
|
75
77
|
"p-retry": "6.2.1",
|
|
76
|
-
"prettier": "3.
|
|
77
|
-
"publint": "0.3.
|
|
78
|
+
"prettier": "3.5.1",
|
|
79
|
+
"publint": "0.3.5",
|
|
78
80
|
"sinon": "19.0.2",
|
|
79
81
|
"stream-buffers": "3.0.3",
|
|
80
82
|
"tempy": "3.1.0",
|