Skip to content

Commit

Permalink
fix(app-builder): make upgrade-self create commit type build by default
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jun 28, 2024
1 parent 34229c8 commit 2092c5f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion apps/app-builder/src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,15 @@ export const upgradeAllBulkCommand = defineBulkCommand({
export const upgradeSelfCommand = defineBulkCommand({
name: COMMAND_UPGRADE_SELF_NAME,
description: `Upgrade ${MYPARCEL_PDK_APP_BUILDER} dependency.`,
commands: [[upgradeCommand, {arguments: [MYPARCEL_PDK_APP_BUILDER]}]],
commands: [
[
upgradeCommand,
{
arguments: [MYPARCEL_PDK_APP_BUILDER],
commitType: 'build',
},
],
],
});

export const preReleaseBulkCommand = defineBulkCommand({
Expand Down

0 comments on commit 2092c5f

Please sign in to comment.