File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ function checkGitData(gitData) {
188
188
}
189
189
190
190
async function commitAndPush ( version , remote ) {
191
- await git . add ( [ 'config.json' , 'package.json' , 'CHANGELOG.md' ] ) ;
191
+ await git . add ( [ 'config.json' , 'package.json' , 'package-lock.json' , ' CHANGELOG.md'] ) ;
192
192
const summary = await git . commit ( `Releasing ${ version } ` ) ;
193
193
194
194
console . log ( `Pushing Changes to ${ remote . name } ...` ) ;
@@ -204,6 +204,7 @@ async function doRelease(options) {
204
204
205
205
await bumpJsonFileVersion ( themeConfigManager . configPath , options . version ) ;
206
206
await bumpJsonFileVersion ( path . join ( THEME_PATH , 'package.json' ) , options . version ) ;
207
+ await bumpJsonFileVersion ( path . join ( THEME_PATH , 'package-lock.json' ) , options . version ) ;
207
208
208
209
const bundlePath = await bundleTheme ( ) ;
209
210
You can’t perform that action at this time.
0 commit comments