gulp-xcodebuild
Version:
The package joins arguments of xcodebuild and returns a string ready to executing in shell.
44 lines (30 loc) • 1.09 kB
Markdown
and returns a string prepared to executing in shell.
```shell
$ npm install gulp-xcodebuild
```
```js
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)
[ ]: https://img.shields.io/npm/v/gulp-xcodebuild.svg
[ ]: https://npmjs.org/package/gulp-xcodebuild
[ ]: https://img.shields.io/npm/dm/gulp-xcodebuild.svg
[ ]: https://npmjs.org/package/gulp-xcodebuild
[ ]: https://img.shields.io/travis/kreshikhin/gulp-xcodebuild/master.svg
[ ]: https://travis-ci.org/kreshikhin/gulp-xcodebuild
[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Build Status][travis-image]][travis-url]
The package joins arguments of xcodebuild