chore: fix version generation during release (#8342)

Co-authored-by: jrandolf <101637635+jrandolf@users.noreply.github.com>
This commit is contained in:
Alex Rudenko 2022-05-13 15:36:46 +02:00 committed by GitHub
parent cec8ff5e40
commit 1bf8bb3c22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,8 +20,8 @@ module.exports = {
tag: true,
},
scripts: {
prerelease:
'node utils/remove_version_suffix.js && node utils/generate_version_file.js',
postbump: 'IS_RELEASE=true npm run doc && git add --update',
prerelease: 'node utils/remove_version_suffix.js',
postbump:
'node utils/generate_version_file.js && IS_RELEASE=true npm run doc && git add --update',
},
};