You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
350 B
10 lines
350 B
const execSync = require('child_process').execSync; |
|
const path = require('path'); |
|
const semver = require('semver'); |
|
const pkg = require('../package.json'); |
|
|
|
if (!semver.prerelease(pkg.version)) { |
|
process.chdir(path.resolve(__dirname, '..')); |
|
execSync('conventional-changelog -p videojs -i CHANGELOG.md -s'); |
|
execSync('git add CHANGELOG.md'); |
|
}
|
|
|