1.0.2 • Published 8 years ago

gulp-xcodebuild v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Gulp Xcodebuild

NPM Version NPM Downloads Build Status

The package joins arguments of xcodebuild and returns a string prepared to executing in shell.

$ npm install gulp-xcodebuild

Usage

var gulp = require('gulp');
var shell = require('gulp-shell');
var xcodebuild = require('gulp-xcodebuild');

gulp.task('build', shell.task([{
      xcodebuild({
            workspace: "./Example.xcworkspace",
            sdk: "iphoneos9.3",
            scheme: "Example"
      }, 'build')
], {verbose: true}));

gulp.task('default', ['build']);

License

MIT