@anolilab/semantic-release-pnpm 8.1.15 → 8.1.16
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 +12 -0
- package/dist/index.d.ts +82 -87
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @anolilab/semantic-release-pnpm [8.1.16](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-pnpm@8.1.15...@anolilab/semantic-release-pnpm@8.1.16) (2026-06-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **build:** add @visulima/pail devDependency to satisfy cerebro peer ([a440c7d](https://github.com/anolilab/semantic-release/commit/a440c7dc61ca5ae69b4931e7ba751c43fdc8159b))
|
|
6
|
+
* **lint:** satisfy eslint-config v27 rules and make codecov upload non-blocking ([da69704](https://github.com/anolilab/semantic-release/commit/da69704ad8158cd82a4eab1259164fbbb6c82999))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
* **@anolilab/rc:** upgraded to 4.0.4
|
|
12
|
+
|
|
1
13
|
## @anolilab/semantic-release-pnpm [8.1.15](https://github.com/anolilab/semantic-release/compare/@anolilab/semantic-release-pnpm@8.1.14...@anolilab/semantic-release-pnpm@8.1.15) (2026-05-26)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,124 +1,119 @@
|
|
|
1
1
|
import stream from 'node:stream';
|
|
2
|
-
|
|
2
|
+
import '@visulima/package';
|
|
3
3
|
interface BranchObject {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
channel?: string | false;
|
|
5
|
+
name: string;
|
|
6
|
+
prerelease?: boolean | string;
|
|
7
|
+
range?: string;
|
|
8
8
|
}
|
|
9
9
|
type BranchSpec$1 = BranchObject | string;
|
|
10
10
|
type PluginSpec<T = any> = string | [string, T];
|
|
11
11
|
interface Options {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
12
|
+
[name: string]: any;
|
|
13
|
+
branches?: BranchSpec$1 | ReadonlyArray<BranchSpec$1>;
|
|
14
|
+
ci?: boolean;
|
|
15
|
+
dryRun?: boolean;
|
|
16
|
+
extends?: ReadonlyArray<string> | string;
|
|
17
|
+
plugins?: ReadonlyArray<PluginSpec>;
|
|
18
|
+
repositoryUrl?: string;
|
|
19
|
+
tagFormat?: string;
|
|
20
20
|
}
|
|
21
21
|
interface Commit {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
22
|
+
author: {
|
|
23
|
+
email: string;
|
|
24
|
+
name: string;
|
|
25
|
+
short: string;
|
|
26
|
+
};
|
|
27
|
+
body: string;
|
|
28
|
+
commit: {
|
|
29
|
+
long: string;
|
|
30
|
+
short: string;
|
|
31
|
+
};
|
|
32
|
+
committer: {
|
|
33
|
+
email: string;
|
|
34
|
+
name: string;
|
|
35
|
+
short: string;
|
|
36
|
+
};
|
|
37
|
+
committerDate: string;
|
|
38
|
+
hash: string;
|
|
39
|
+
message: string;
|
|
40
|
+
subject: string;
|
|
41
|
+
tree: {
|
|
42
|
+
long: string;
|
|
43
|
+
short: string;
|
|
44
|
+
};
|
|
45
45
|
}
|
|
46
|
-
|
|
47
46
|
interface CommonContext {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
47
|
+
branch: BranchSpec;
|
|
48
|
+
branches: BranchSpec[];
|
|
49
|
+
cwd: string;
|
|
50
|
+
env: "object";
|
|
51
|
+
logger: {
|
|
52
|
+
error: (...message: string[]) => void;
|
|
53
|
+
log: (...message: string[]) => void;
|
|
54
|
+
success: (...message: string[]) => void;
|
|
55
|
+
warn: (...message: string[]) => void;
|
|
56
|
+
};
|
|
57
|
+
options: Options;
|
|
58
|
+
stderr: stream.Writable;
|
|
59
|
+
stdout: stream.Writable;
|
|
61
60
|
}
|
|
62
61
|
type VerifyConditionsContext = CommonContext;
|
|
63
62
|
type CommonContext2 = CommonContext & {
|
|
64
|
-
|
|
63
|
+
releases: Release[];
|
|
65
64
|
};
|
|
66
65
|
type AddChannelContext = CommonContext2 & {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
66
|
+
commits: Commit[];
|
|
67
|
+
currentRelease: Release;
|
|
68
|
+
lastRelease: Release;
|
|
69
|
+
nextRelease: Release;
|
|
71
70
|
};
|
|
72
71
|
type CommonContext3 = CommonContext2 & {
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
commits: Commit[];
|
|
73
|
+
lastRelease: Release;
|
|
75
74
|
};
|
|
76
75
|
type CommonContext4 = CommonContext3 & {
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
commits: Commit[];
|
|
77
|
+
nextRelease: Release;
|
|
79
78
|
};
|
|
80
79
|
type PrepareContext = CommonContext4;
|
|
81
80
|
type PublishContext = CommonContext4;
|
|
82
81
|
interface BranchSpec {
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
name: string;
|
|
83
|
+
tags?: Tag[];
|
|
85
84
|
}
|
|
86
85
|
interface Tag {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
86
|
+
channel?: string;
|
|
87
|
+
gitHead?: string;
|
|
88
|
+
gitTag?: string;
|
|
89
|
+
version?: string;
|
|
91
90
|
}
|
|
92
91
|
interface Release {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
92
|
+
channel?: string | null;
|
|
93
|
+
gitHead?: string;
|
|
94
|
+
gitTag?: string;
|
|
95
|
+
name?: string;
|
|
96
|
+
type?: "build" | "major" | "minor" | "patch" | "premajor" | "preminor" | "prepatch" | "prerelease";
|
|
97
|
+
version: string;
|
|
99
98
|
}
|
|
100
|
-
|
|
101
99
|
interface PluginConfig {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
100
|
+
branches?: (string | {
|
|
101
|
+
name: string;
|
|
102
|
+
prerelease: boolean;
|
|
103
|
+
})[];
|
|
104
|
+
disableScripts?: boolean;
|
|
105
|
+
npmPublish?: boolean;
|
|
106
|
+
pkgRoot?: string;
|
|
107
|
+
publishBranch?: string;
|
|
108
|
+
tarballDir?: false | string;
|
|
111
109
|
}
|
|
112
|
-
|
|
113
110
|
interface ReleaseInfo {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
111
|
+
channel: string;
|
|
112
|
+
name: string;
|
|
113
|
+
url?: string;
|
|
117
114
|
}
|
|
118
|
-
|
|
119
115
|
declare const verifyConditions: (pluginConfig: PluginConfig, context: VerifyConditionsContext) => Promise<void>;
|
|
120
116
|
declare const prepare: (pluginConfig: PluginConfig, context: PrepareContext) => Promise<void>;
|
|
121
117
|
declare const publish: (pluginConfig: PluginConfig, context: PublishContext) => Promise<ReleaseInfo | false>;
|
|
122
118
|
declare const addChannel: (pluginConfig: PluginConfig, context: AddChannelContext) => Promise<ReleaseInfo | false>;
|
|
123
|
-
|
|
124
119
|
export { addChannel, prepare, publish, verifyConditions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/semantic-release-pnpm",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.16",
|
|
4
4
|
"description": "Semantic-release plugin to publish a npm package with pnpm.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
],
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@actions/core": "3.0.1",
|
|
64
|
-
"@anolilab/rc": "4.0.
|
|
64
|
+
"@anolilab/rc": "4.0.4",
|
|
65
65
|
"@semantic-release/error": "^4.0.0",
|
|
66
66
|
"@visulima/fs": "^4.1.0",
|
|
67
67
|
"@visulima/package": "^4.1.7",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
"debug": "^4.4.3",
|
|
70
70
|
"env-ci": "^11.2.0",
|
|
71
71
|
"execa": "^9.6.1",
|
|
72
|
-
"ini": "^
|
|
72
|
+
"ini": "^6.0.0",
|
|
73
73
|
"normalize-url": "9.0.1",
|
|
74
74
|
"registry-auth-token": "5.1.1",
|
|
75
|
-
"semver": "7.8.
|
|
75
|
+
"semver": "7.8.4"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": "^22.14.0 || >=24.10.0"
|