@xcodekit/xcode-node 0.6.9 → 0.6.10

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -0
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -103,6 +103,8 @@ export declare class XcodeProject {
103
103
  * Returns the UUID of the sync group.
104
104
  */
105
105
  addFileSystemSyncGroup(targetUuid: string, path: string): string | null
106
+ /** Get the on-disk paths of a target's file system sync groups. */
107
+ getTargetSyncGroupPaths(targetUuid: string): Array<string>
106
108
  /** Get a string property from any object. */
107
109
  getObjectProperty(uuid: string, key: string): string | null
108
110
  /** Set a string property on any object. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xcodekit/xcode-node",
3
- "version": "0.6.9",
3
+ "version": "0.6.10",
4
4
  "description": "Parse, manipulate, and serialize Xcode .pbxproj files — native Node.js addon (napi-rs)",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -10,11 +10,11 @@
10
10
  "types.d.ts"
11
11
  ],
12
12
  "optionalDependencies": {
13
- "@xcodekit/xcode-darwin-arm64": "0.6.9",
14
- "@xcodekit/xcode-darwin-x64": "0.6.9",
15
- "@xcodekit/xcode-linux-arm64-gnu": "0.6.9",
16
- "@xcodekit/xcode-linux-x64-gnu": "0.6.9",
17
- "@xcodekit/xcode-win32-x64-msvc": "0.6.9"
13
+ "@xcodekit/xcode-darwin-arm64": "0.6.10",
14
+ "@xcodekit/xcode-darwin-x64": "0.6.10",
15
+ "@xcodekit/xcode-linux-arm64-gnu": "0.6.10",
16
+ "@xcodekit/xcode-linux-x64-gnu": "0.6.10",
17
+ "@xcodekit/xcode-win32-x64-msvc": "0.6.10"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",