From d3674dac2906b1d9115b54db3cbd4df09f3f3a00 Mon Sep 17 00:00:00 2001 From: James Meng Date: Mon, 23 Sep 2024 13:53:20 -0700 Subject: [PATCH] Add missing flags --- packages/theme/src/cli/commands/theme/push.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/theme/src/cli/commands/theme/push.ts b/packages/theme/src/cli/commands/theme/push.ts index 577dd14dc7..a29395292f 100644 --- a/packages/theme/src/cli/commands/theme/push.ts +++ b/packages/theme/src/cli/commands/theme/push.ts @@ -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)