gulp-xcodebuild

1.0.2 • Public • Published

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

/gulp-xcodebuild/

    Package Sidebar

    Install

    npm i gulp-xcodebuild

    Weekly Downloads

    8

    Version

    1.0.2

    License

    MIT

    Last publish

    Collaborators

    • kreshikhin