mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
feat(ios): Swift Package Manager support in config (#10252)
This commit is contained in:
@@ -12,7 +12,18 @@ interface IConfigPlatform {
|
||||
discardUncaughtJsExceptions?: boolean;
|
||||
}
|
||||
|
||||
interface IConfigIOS extends IConfigPlatform {}
|
||||
interface IConfigIOS extends IConfigPlatform {
|
||||
/**
|
||||
* Swift Package Manager
|
||||
* List packages to be included in the iOS build.
|
||||
*/
|
||||
SPMPackages?: Array<{
|
||||
name: string;
|
||||
libs: Array<string>;
|
||||
repositoryURL: string;
|
||||
version: string;
|
||||
}>;
|
||||
}
|
||||
|
||||
interface IConfigAndroid extends IConfigPlatform {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user