We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 932f45d commit 0606900Copy full SHA for 0606900
lib/repo.js
@@ -6,7 +6,7 @@ var fs = require( "fs" ),
6
module.exports = function( Release ) {
7
8
Release.define( {
9
- _jsonFiles: [ "package.json", "bower.json" ],
+ _jsonFiles: [ "package.json", "package-lock.json", "bower.json" ],
10
_cloneRepo: function() {
11
var projectRelease, releaseDependencies;
12
@@ -270,6 +270,7 @@ Release.define( {
270
271
// Update only canonical version
272
Release._versionJSON( "package.json", Release.nextVersion );
273
+ Release._versionJSON( "package-lock.json", Release.nextVersion );
274
275
console.log( "Committing version update..." );
276
Release.exec( "git commit -am \"Build: Updating the " + Release.branch +
0 commit comments