mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 15:28:40 +00:00
e55fead09f
Same as #339 but stops library/standalone and library/HTMLPurifier.standalone.phpfrom being commit
34 lines
700 B
JavaScript
34 lines
700 B
JavaScript
module.exports = {
|
|
debug: true,
|
|
branch: 'master',
|
|
plugins: [
|
|
'@semantic-release/commit-analyzer',
|
|
'@semantic-release/release-notes-generator',
|
|
[
|
|
'@semantic-release/changelog',
|
|
{
|
|
'changelogFile': 'NEWS'
|
|
}
|
|
],
|
|
[
|
|
'@semantic-release/exec',
|
|
{
|
|
'prepareCmd': 'php update-for-release ${nextRelease.version}'
|
|
}
|
|
],
|
|
[
|
|
'@semantic-release/git',
|
|
{
|
|
'assets': [
|
|
'VERSION',
|
|
'NEWS',
|
|
'Doxyfile',
|
|
['library/**/*', '!library/standalone/**/*', '!library/HTMLPurifier.standalone.php'],
|
|
'configdoc/**/*',
|
|
],
|
|
}
|
|
],
|
|
'@semantic-release/github'
|
|
],
|
|
}
|