Skip to content

Commit cb5e5d5

Browse files
committed
Rename gulp-taco-remote to gulp-remotebuild
1 parent 0d2eba4 commit cb5e5d5

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
# gulp-taco-remote
1+
# gulp-remotebuild
2+
3+
[![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)
24

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

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

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

911
## How to use
1012

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

1315
```js
14-
const taco = require('./gulp-taco-remote');
16+
const taco = require('./gulp-remotebuild');
1517

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

8688
## Contributions
8789

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

90-
Found a bug? File us an [issue](https://github.com/compulim/gulp-taco-remote/issues).
92+
Found a bug? File us an [issue](https://github.com/compulim/gulp-remotebuild/issues).

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const through2 = require('through2');
1515
const DEFAULT_TACO_REMOTE_CLIENT_OPTIONS = {
1616
buildTimeout : 300000,
1717
configuration : 'debug',
18-
cordovaVersion: '5.1.1',
18+
cordovaVersion: '6.1.1',
1919
host : 'localhost:3000',
2020
logLevel : 'warn',
2121
mount : 'cordova',

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "gulp-taco-remote",
3-
"version": "1.0.0",
2+
"name": "gulp-remotebuild",
3+
"version": "1.0.1",
44
"description": "Gulp plug-in to build Cordova iOS app remotely using Visual Studio Tools for Apache Cordova",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/compulim/gulp-taco-remote.git"
11+
"url": "https://github.com/compulim/gulp-remotebuild.git"
1212
},
1313
"keywords": [
1414
"cordova",
@@ -19,9 +19,9 @@
1919
"author": "William Wong <[email protected]> (https://github.com/compulim)",
2020
"license": "MIT",
2121
"bugs": {
22-
"url": "https://github.com/compulim/gulp-taco-remote/issues"
22+
"url": "https://github.com/compulim/gulp-remotebuild/issues"
2323
},
24-
"homepage": "https://github.com/compulim/gulp-taco-remote#readme",
24+
"homepage": "https://github.com/compulim/gulp-remotebuild#readme",
2525
"dependencies": {
2626
"archiver": "^1.3.0",
2727
"colors": "^1.1.2",

0 commit comments

Comments
 (0)