Skip to content

Commit 2d35c1a

Browse files
committed
refactor: use RockCLIOptions type in platform-ios
1 parent d816e8f commit 2d35c1a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/platform-ios/src/lib/commands/signIos.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { PluginApi } from '@rock-js/config';
22
import { modifyApp, modifyIpa } from '@rock-js/platform-apple-helpers';
3+
import type { RockCLIOptions } from 'packages/tools/dist/src/index.js';
34

45
export type SignFlags = {
56
app: string;
@@ -44,7 +45,7 @@ const OPTIONS = [
4445
name: '--no-hermes',
4546
description: 'Do not use Hermes to build the JS bundle.',
4647
},
47-
];
48+
] satisfies RockCLIOptions;
4849

4950
export const registerSignCommand = (api: PluginApi) => {
5051
api.registerCommand({

0 commit comments

Comments
 (0)