Skip to content

Commit

Permalink
Add missing flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmengo committed Sep 24, 2024
1 parent 05cb289 commit d3674da
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/theme/src/cli/commands/theme/push.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,21 @@ export default class Push extends ThemeCommand {
const pushFlags: PushFlags = {
path: flags.path,
password: flags.password,
environment: flags.environment,
store: flags.store,
environment: flags.environment,
theme: flags.theme,
development: flags.development,
live: flags.live,
unpublished: flags.unpublished,
nodelete: flags.nodelete,
only: flags.only,
ignore: flags.ignore,
json: flags.json,
allowLive: flags['allow-live'],
publish: flags.publish,
force: flags.force,
noColor: flags['no-color'],
verbose: flags.verbose,
}

await push(pushFlags)
Expand Down

0 comments on commit d3674da

Please sign in to comment.