Skip to content

Commit

Permalink
Rename gulp-taco-remote to gulp-remotebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Feb 16, 2017
1 parent 0d2eba4 commit cb5e5d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# gulp-taco-remote
# gulp-remotebuild

[![npm version](https://badge.fury.io/js/gulp-remotebuild.svg)](https://badge.fury.io/js/gulp-remotebuild) [![Node.js dependencies](https://david-dm.org/compulim/gulp-remotebuild.svg)](https://david-dm.org/compulim/gulp-remotebuild) [![npm downloads](https://img.shields.io/npm/dm/gulp-remotebuild.svg)](https://img.shields.io/npm/dm/gulp-remotebuild.svg)

Gulp plug-in to build Cordova iOS app remotely using [Visual Studio Tools for Apache Cordova](https://taco.visualstudio.com/).

You can also use this plug-in and TACO to aid continuous integration.

This Gulp plug-in is largely based on this [REST API doc](https://github.com/Microsoft/remotebuild/blob/master/src/taco-remote/RESTAPI.md).
This Gulp plug-in is largely based on this [REST API doc](https://github.com/Microsoft/remotebuild/blob/master/src/remotebuild/RESTAPI.md).

## How to use

Install [`remotebuild`](https://taco.visualstudio.com/en-us/docs/ios-guide/) on your Mac or [MacInCloud](https://macincloud.com/).

```js
const taco = require('./gulp-taco-remote');
const taco = require('./gulp-remotebuild');

return gulp.src('./**/*')
.pipe(taco.build({
Expand Down Expand Up @@ -85,6 +87,6 @@ Default options are as below:

## Contributions

Like us? [Star us](https://github.com/compulim/gulp-taco-remote/stargazers).
Like us? [Star us](https://github.com/compulim/gulp-remotebuild/stargazers).

Found a bug? File us an [issue](https://github.com/compulim/gulp-taco-remote/issues).
Found a bug? File us an [issue](https://github.com/compulim/gulp-remotebuild/issues).
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const through2 = require('through2');
const DEFAULT_TACO_REMOTE_CLIENT_OPTIONS = {
buildTimeout : 300000,
configuration : 'debug',
cordovaVersion: '5.1.1',
cordovaVersion: '6.1.1',
host : 'localhost:3000',
logLevel : 'warn',
mount : 'cordova',
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "gulp-taco-remote",
"version": "1.0.0",
"name": "gulp-remotebuild",
"version": "1.0.1",
"description": "Gulp plug-in to build Cordova iOS app remotely using Visual Studio Tools for Apache Cordova",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/compulim/gulp-taco-remote.git"
"url": "https://github.com/compulim/gulp-remotebuild.git"
},
"keywords": [
"cordova",
Expand All @@ -19,9 +19,9 @@
"author": "William Wong <[email protected]> (https://github.com/compulim)",
"license": "MIT",
"bugs": {
"url": "https://github.com/compulim/gulp-taco-remote/issues"
"url": "https://github.com/compulim/gulp-remotebuild/issues"
},
"homepage": "https://github.com/compulim/gulp-taco-remote#readme",
"homepage": "https://github.com/compulim/gulp-remotebuild#readme",
"dependencies": {
"archiver": "^1.3.0",
"colors": "^1.1.2",
Expand Down

0 comments on commit cb5e5d5

Please sign in to comment.