ern-container-transformer-pbxproj

1.1.0 • Public • Published

iOS pbxproj Container Transformer

This transformer can be used to patch one or more pbxproj (iOS project file) included in the Container, in specific ways.

For now this transformer only allows adding projects to other projects, as well as adding other project targets as target dependencies of any project.

Inputs

  • containerPath : Path to the Container to transform
  • addProjects : Array of AddProject objects (see below)
  • addTargetDependencies : Array of AddTargetDependency objects (see below)
  • setBuildSettings : Array of SetBuildSettings objects (see below)

Patching directives objects

AddProject

Add a project to one or more other target projects.

{
  /**
   * Relative path to the target project in which
   * to add another project.
   * The path is relative to the Container root directory.
   * Can also be a glob. If multiple projects are
   * matching the glob pattern, then all of these
   * projects will be transformed sequentially.
   */
  targetProjectPathstring
 
  /**
   * Absolute or relative path (relative to the parent directory
   * of the target .xcodeproj directory)
   */
  sourceProjectPathstring
}

AddTargetDependency

Add one or more native targets from a project, to one or more other projects.

{
  /**
   * Relative path to the target project in which
   * The path is relative to the Container root directory.
   * Can also be a glob. If multiple projects are
   * matching the glob pattern, then all of these
   * projects will be transformed sequentially.
   */
  targetProjectPathstring
 
  /**
   * Absolute or relative path (relative to the parent directory
   * of the target .xcodeproj directory) to the project containing
   * the native target to add as a dependency.
   */
  sourceProjectPathstring
 
  /**
   * Array of native targets from the source project to
   * add as target dependencies in the target project(s).
   */
  sourceNativeTargetsstring[]
}

SetBuildSettings

Set one more build settings in one or more target projects.

{
  /**
   * Absolute path to the target project in which
   * to add a target dependency from another project
   * Can also be a glob. If multiple projects are
   * matching the glob pattern, then all of these
   * projects will be transformed sequentially.
   */
  targetProjectPathstring
 
  /**
   * Array of native targets from the source project to
   * add as target dependencies in the target project(s).
   */
  buildSettings{
    /**
      * Configuration(s) for which these build settings apply.
      * For example [ 'Debug' , 'Release' ]
      */
    configurationsstring[]
 
    /**
     * Build settings as key values pairs
     */
    settings{ [keystring]string }
  }[]
}

Usage

With ern transform-container CLI command

$ ern transform-container --containerPath [pathToContainer] -t pbxproj -e '{"addProjects":[...], "addTargetDependencies":[...]}, "setBuildSettings":[...]'

Instead of passing the whole configuration on the command line for --extra/-e, it is also possible to use a file path to a json file holding the configuration, or a path to a file stored in the Cauldron. Check out the ern transform-container command documentation for more info.

With Cauldron

To automatically transform the Cauldron generated Containers of a target native application and platform, you can add a transformer entry in the Cauldron in the Container generator configuration object as follow :

"transformers"[
  {
    "name": "pbxproj",
    "extra": {
      "addProjects": [...],
      "addTargetDependencies" : [...],
      "setBuildSettings": [...]
    }
  }
]

Programmatically

import PbxProjTransformer from 'ern-container-transformer-pbxproj'
const transformer = new BuildConfigTransformer()
transformer.transform(
  {
    /* Local file system path to the Container */
    containerPath: string
    /* Extra data specific to this publisher */
    extra?: {
      addProjects: AddProject[],
      addTargetDependencies: AddTargetDependency[]
      setBuildSettings: SetBuildSettings[]
    }
  }
})

Package Sidebar

Install

npm i ern-container-transformer-pbxproj

Weekly Downloads

0

Version

1.1.0

License

Apache-2.0

Unpacked Size

45.1 kB

Total Files

47

Last publish

Collaborators

  • electrode-native