@jcoreio/toolchain-semantic-release 5.11.2 → 5.11.4
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/package.json +3 -2
- package/release.config.cjs +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jcoreio/toolchain-semantic-release",
|
|
3
|
-
"version": "5.11.
|
|
3
|
+
"version": "5.11.4",
|
|
4
4
|
"description": "toolchain for running semantic-release",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,12 +16,13 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"dedent-js": "^1.0.1",
|
|
18
18
|
"resolve-bin": "^1.0.0",
|
|
19
|
-
"@jcoreio/toolchain": "5.11.
|
|
19
|
+
"@jcoreio/toolchain": "5.11.4"
|
|
20
20
|
},
|
|
21
21
|
"toolchainManaged": {
|
|
22
22
|
"optionalDevDependencies": {
|
|
23
23
|
"@semantic-release/commit-analyzer": "^12.0.0",
|
|
24
24
|
"@semantic-release/github": "^10.0.3",
|
|
25
|
+
"@semantic-release/exec": "^7.1.0",
|
|
25
26
|
"@jcoreio/semantic-release-npm": "^12.0.2",
|
|
26
27
|
"@semantic-release/release-notes-generator": "^13.0.0",
|
|
27
28
|
"conventional-changelog-conventionalcommits": "^7.0.2",
|
package/release.config.cjs
CHANGED
|
@@ -113,11 +113,9 @@ module.exports =
|
|
|
113
113
|
[]
|
|
114
114
|
: [
|
|
115
115
|
[
|
|
116
|
-
|
|
117
|
-
// https://github.com/semantic-release/npm/pull/531
|
|
118
|
-
require.resolve('@jcoreio/semantic-release-npm'),
|
|
116
|
+
require.resolve('@semantic-release/exec'),
|
|
119
117
|
{
|
|
120
|
-
|
|
118
|
+
publishCmd: `cd ${path.join(projectDir, 'dist')} && ((npm version \${nextRelease.version} && npm publish . --loglevel silly) || (git tag -d ${pkg}-v\${nextRelease.version} && git push --delete origin ${pkg}-v\${nextRelease.version} && exit 1))`,
|
|
121
119
|
},
|
|
122
120
|
],
|
|
123
121
|
]),
|
|
@@ -134,9 +132,9 @@ module.exports =
|
|
|
134
132
|
[]
|
|
135
133
|
: [
|
|
136
134
|
[
|
|
137
|
-
require.resolve('@
|
|
135
|
+
require.resolve('@semantic-release/exec'),
|
|
138
136
|
{
|
|
139
|
-
|
|
137
|
+
publishCmd: `cd ${path.join(projectDir, 'dist')} && ((npm version \${nextRelease.version} && npm publish . --loglevel silly) || (git tag -d v\${nextRelease.version} && git push --delete origin v\${nextRelease.version} && exit 1))`,
|
|
140
138
|
},
|
|
141
139
|
],
|
|
142
140
|
]),
|