🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

xcodebuild

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xcodebuild

Build Xcode project from javascript

1.0.2
latest
Source
npm
Version published
Weekly downloads
15
-11.76%
Maintainers
1
Weekly downloads
 
Created
Source

xcodebuild

Spawns xcodebuild as child process for building Xcode project from javascript.

Usage

xcodebuild(action, options, callback)

Sample

var xcodebuild = require('xcodebuild')

gulp.task('build', function () {
  xcodebuild('build', {
    buildDir: 'build'
  }, function (error) {
    // Do something else after 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

Keywords

xcodebuild

FAQs

Package last updated on 08 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts