mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-21 12:20:48 +02:00
fix(gstack2): harden integrated runtime verification
This commit is contained in:
@@ -8,7 +8,12 @@ import {
|
||||
} from '../../runtime/install.js';
|
||||
|
||||
const ROOT = path.resolve(import.meta.dir, '../..');
|
||||
const REQUIRED_CAPABILITIES = ['browse', 'gstack-design', 'make-pdf'] as const;
|
||||
const REQUIRED_CAPABILITIES = [
|
||||
'browse',
|
||||
'gstack-design',
|
||||
'make-pdf',
|
||||
...(process.platform === 'darwin' ? ['gstack-ios-qa-daemon', 'gstack-ios-qa-mint'] : []),
|
||||
] as const;
|
||||
|
||||
export interface RuntimePayloadEntry {
|
||||
path: string;
|
||||
|
||||
Reference in New Issue
Block a user