Skip to content

Commit c934f3a

Browse files
pvgndjbottigliero
authored andcommitted
fix!: composer.json and composer.lock have been removed from default package and bump files.
- No need to bump version for `composer` as it relies on VCS tag to infer version (#495) - Closes #394 BREAKING CHANGE: `composer.json` and `composer.lock` will no longer be read from or bumped by default. If you need to obtain a version or write a version to these files, please use `bumpFiles` and/or `packageFiles` options accordingly.
1 parent 0539dc9 commit c934f3a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

defaults.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ defaults.header = '# Changelog\n\nAll notable changes to this project will be do
3232
defaults.packageFiles = [
3333
'package.json',
3434
'bower.json',
35-
'manifest.json',
36-
'composer.json'
35+
'manifest.json'
3736
]
3837

3938
defaults.bumpFiles = defaults.packageFiles.concat([
4039
'package-lock.json',
41-
'npm-shrinkwrap.json',
42-
'composer.lock'
40+
'npm-shrinkwrap.json'
4341
])
4442

4543
module.exports = defaults

0 commit comments

Comments
 (0)