Skip to content

Commit

Permalink
fix: Add missing CLI flags for new chrome features
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Aug 22, 2024
1 parent 2f138f0 commit ebf32d6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ cli.option(
'--chrome-publish-target [chromePublishTarget]',
'Group to publish to, "default" or "trustedTesters"',
);
cli.option(
'--chrome-deploy-percentage [chromeDeployPercentage]',
'An integer from 1-100',
);
cli.option(
'--chrome-review-exemption',
'Submit update using expidited review process',
);
cli.option(
'--chrome-skip-submit-review',
"Just upload the extension zip, don't submit it for review or publish it",
Expand Down Expand Up @@ -98,6 +106,8 @@ function configFromFlags(flags: any): InlineConfig {
clientSecret: flags.chromeClientSecret,
refreshToken: flags.chromeRefreshToken,
publishTarget: flags.chromePublishTarget,
deployPercentage: flags.chromeDeployPercentage,
reviewExemption: flags.chromeReviewExemption,
skipSubmitReview: flags.chromeSkipSubmitReview,
},
firefox: {
Expand Down

0 comments on commit ebf32d6

Please sign in to comment.