@wyxos/zephyr 0.2.3 → 0.2.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
CHANGED
|
@@ -292,8 +292,12 @@ async function bumpVersion(releaseType, rootDir = process.cwd()) {
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
async function pushChanges(rootDir = process.cwd()) {
|
|
295
|
-
logStep('Pushing commits
|
|
296
|
-
await runCommand('git', ['push'
|
|
295
|
+
logStep('Pushing commits to origin...')
|
|
296
|
+
await runCommand('git', ['push'], { cwd: rootDir })
|
|
297
|
+
|
|
298
|
+
logStep('Pushing tags to origin...')
|
|
299
|
+
await runCommand('git', ['push', 'origin', '--tags'], { cwd: rootDir })
|
|
300
|
+
|
|
297
301
|
logSuccess('Git push completed.')
|
|
298
302
|
}
|
|
299
303
|
|