We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d816e8f commit 2d35c1aCopy full SHA for 2d35c1a
1 file changed
packages/platform-ios/src/lib/commands/signIos.ts
@@ -1,5 +1,6 @@
1
import type { PluginApi } from '@rock-js/config';
2
import { modifyApp, modifyIpa } from '@rock-js/platform-apple-helpers';
3
+import type { RockCLIOptions } from 'packages/tools/dist/src/index.js';
4
5
export type SignFlags = {
6
app: string;
@@ -44,7 +45,7 @@ const OPTIONS = [
44
45
name: '--no-hermes',
46
description: 'Do not use Hermes to build the JS bundle.',
47
},
-];
48
+] satisfies RockCLIOptions;
49
50
export const registerSignCommand = (api: PluginApi) => {
51
api.registerCommand({
0 commit comments