@taiga-ui/release-it-config 0.414.0 → 0.415.0
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.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -40,11 +40,11 @@ module.exports = {
|
|
|
40
40
|
},
|
|
41
41
|
hooks: {
|
|
42
42
|
'after:bump': [
|
|
43
|
+
'git fetch --prune --prune-tags origin', // cleanup git workspace
|
|
43
44
|
'git tag v${version}', // for include last tag inside CHANGELOG
|
|
44
45
|
'echo "new version is v${version}"',
|
|
45
46
|
`${changelog} --prepend --starting-version v$\{version} -p > /dev/null`,
|
|
46
47
|
'npx prettier CHANGELOG.md --write > /dev/null',
|
|
47
|
-
'git fetch --prune --prune-tags origin', // cleanup git workspace
|
|
48
48
|
'git add CHANGELOG.md',
|
|
49
49
|
'npx syncer || echo ""',
|
|
50
50
|
'npm run after:bump -s || echo ""',
|