@dhis2/cli-utils 5.2.0-alpha.11 → 5.2.0-alpha.13
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 +1 -1
- package/src/cmds/release.js +1 -4
package/package.json
CHANGED
package/src/cmds/release.js
CHANGED
|
@@ -92,7 +92,7 @@ const handler = async ({ publish }) => {
|
|
|
92
92
|
'@semantic-release/exec',
|
|
93
93
|
{
|
|
94
94
|
publishCmd:
|
|
95
|
-
'pnpm install --lockfile-only && git commit -am "chore: bump pnpm-lock.yml ${nextRelease.version} [skip ci]" && git push',
|
|
95
|
+
'pnpm install --lockfile-only && git commit -am "chore: bump pnpm-lock.yml ${nextRelease.version} [skip ci]" && git push',
|
|
96
96
|
},
|
|
97
97
|
]
|
|
98
98
|
const deferPlugin = require('../support/semantic-release-defer-release')
|
|
@@ -135,7 +135,6 @@ const handler = async ({ publish }) => {
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
try {
|
|
138
|
-
console.log(semanticRelease)
|
|
139
138
|
const result = await semanticRelease(options, config)
|
|
140
139
|
|
|
141
140
|
if (result) {
|
|
@@ -177,5 +176,3 @@ module.exports = {
|
|
|
177
176
|
},
|
|
178
177
|
},
|
|
179
178
|
}
|
|
180
|
-
|
|
181
|
-
// handler({ publish: 'npm' })
|