@expo/config-plugins 9.1.1 → 9.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
- /// <reference types="xcode" />
2
1
  import { ConfigPlugin, XcodeProject } from '../Plugin.types';
3
2
  /**
4
3
  * Create a build source file and link it to Xcode.
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
  import { ExpoConfig } from '@expo/config-types';
8
- import xcode, { PBXFile, PBXGroup, PBXNativeTarget, PBXProject, XCBuildConfiguration, XCConfigurationList, XcodeProject } from 'xcode';
8
+ import xcode, { PBXFile, PBXGroup, PBXNativeTarget, PBXProject, UUID, XCBuildConfiguration, XCConfigurationList, XcodeProject } from 'xcode';
9
9
  export type ProjectSectionEntry = [string, PBXProject];
10
10
  export type NativeTargetSection = Record<string, PBXNativeTarget>;
11
11
  export type NativeTargetSectionEntry = [string, PBXNativeTarget];
@@ -54,8 +54,8 @@ export declare function getApplicationNativeTarget({ project, projectName, }: {
54
54
  project: XcodeProject;
55
55
  projectName: string;
56
56
  }): {
57
- uuid: string;
58
- target: xcode.PBXNativeTarget;
57
+ uuid: UUID;
58
+ target: PBXNativeTarget;
59
59
  };
60
60
  /**
61
61
  * Add a framework to the default app native target.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-plugins",
3
- "version": "9.1.1",
3
+ "version": "9.1.3",
4
4
  "description": "A library for Expo config plugins",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -33,9 +33,9 @@
33
33
  "paths"
34
34
  ],
35
35
  "dependencies": {
36
- "@expo/config-types": "^53.0.0-preview.0",
37
- "@expo/json-file": "~9.1.0",
38
- "@expo/plist": "^0.3.0",
36
+ "@expo/config-types": "^53.0.0-preview.2",
37
+ "@expo/json-file": "~9.1.1",
38
+ "@expo/plist": "^0.3.1",
39
39
  "@expo/sdk-runtime-versions": "^1.0.0",
40
40
  "chalk": "^4.1.2",
41
41
  "debug": "^4.3.5",
@@ -52,10 +52,10 @@
52
52
  "@types/debug": "^4.1.5",
53
53
  "@types/find-up": "^4.0.0",
54
54
  "@types/xml2js": "~0.4.11",
55
- "expo-module-scripts": "^4.1.0"
55
+ "expo-module-scripts": "^4.1.1"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "2487c7aa9b5ef6a7052e82bbf9a53604c2ed273f"
60
+ "gitHead": "dd2c7150fd75c56505aa6d3f805c14e255649c5d"
61
61
  }