JSPM

gulp-spawn-xcodebuild

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q39979F
  • License MIT

Compiles xcode project with gulp

Package Exports

  • gulp-spawn-xcodebuild

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-spawn-xcodebuild) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-spawn-xcodebuild

This plugin spawns xcodebuild as child process for building Xcode project from command line.

Usage

Pipe src to plugin with action and options xcodebuild(action, options)

Sample

var gulp = require('gulp')
  , xcodebuild = require('gulp-spawn-xcodebuild')

gulp.task('build', function () {
  return gulp.src('xcode_project_folder')
    .pipe(xcodebuild('build', {
      buildDir: 'build'
    }))
})

Available Actions

  • build, build Xcode project
  • clean, clean Xcode project
  • showsdks, list all supported sdks

Available Options

  • buildDir, target build directory. Default is build in src
  • scheme, Xcode project build scheme
  • configuration, Xcode build configuration

License

MIT