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 projectclean, clean Xcode projectshowsdks, list all supported sdks
Available Options
buildDir, target build directory. Default isbuildinsrcscheme, Xcode project build schemeconfiguration, Xcode build configuration
License
MIT