Skip to content

Commit fee872f

Browse files
TilmannBachbcoe
authored andcommittedNov 1, 2018
feat: adds support for bumping for composer versions (#262)
1 parent e1b5780 commit fee872f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎lib/lifecycles/bump.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@ Bump.getUpdatedConfigs = function () {
5050
Bump.pkgFiles = [
5151
'package.json',
5252
'bower.json',
53-
'manifest.json'
53+
'manifest.json',
54+
'composer.json'
5455
]
5556

5657
Bump.lockFiles = [
5758
'package-lock.json',
58-
'npm-shrinkwrap.json'
59+
'npm-shrinkwrap.json',
60+
'composer.lock'
5961
]
6062

6163
function getReleaseType (prerelease, expectedReleaseType, currentVersion) {

0 commit comments

Comments
 (0)
Please sign in to comment.