Skip to content

Commit

Permalink
update master, add github npm repository settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
taku-o committed Sep 6, 2019
1 parent 815cfa9 commit eec0b72
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@taku-o:registry=https://npm.pkg.github.com/
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ gulp-webdriver [![Build Status](https://travis-ci.org/webdriverio/gulp-webdriver
## Install

```shell
npm install gulp-webdriver --save-dev
npm install @taku-o/gulp-webdriver --save-dev
```

## Usage

You can run WebdriverIO locally by running this simple task:

```js
import webdriver from 'gulp-webdriver';
import webdriver from '@taku-o/gulp-webdriver';

gulp.task('test:e2e', function() {
return gulp.src('wdio.conf.js').pipe(webdriver());
Expand All @@ -27,7 +27,7 @@ You can find all available options [here](http://webdriver.io/guide/testrunner/g
or by executing `$ wdio --help` (if you have WebdriverIO installed globally).

```js
import webdriver from 'gulp-webdriver';
import webdriver from '@taku-o/gulp-webdriver';

gulp.task('test:e2e', function() {
return gulp.src('wdio.conf.js').pipe(webdriver({
Expand All @@ -54,3 +54,5 @@ maintain the existing coding style.
* 2016-03-16   v2.0.0    updated codebase to ES6 and WebdriverIO to v4.0
* 2016-03-30   v2.0.1    improved error handling
* 2016-07-06   v2.0.2    fixed bug where gulp end event was not fired
* 2019-09-06   v3.0.0    Fork webdriverio/gulp-webdriver master, and publish. this version support @wdio/cli.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "gulp-webdriver",
"version": "2.0.3",
"description": "gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner",
"name": "@taku-o/gulp-webdriver",
"version": "3.0.0",
"description": "Fork of gulp-webdriver. @wdio/cli support version of gulp-webdriver.",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/gulp-webdriver.git"
"url": "git://github.com/taku-o/gulp-webdriver.git"
},
"main": "lib/index.js",
"scripts": {
Expand All @@ -28,12 +28,12 @@
"runner",
"gulpplugin"
],
"author": "Christian Bromann <mail@christian-bromann.com>",
"author": "taku-o <mail@nanasi.jp> (https://nanasi.jp/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/gulp-webdriver/issues"
"url": "https://github.com/taku-o/gulp-webdriver/issues"
},
"homepage": "https://github.com/webdriverio/gulp-webdriver",
"homepage": "https://github.com/taku-o/gulp-webdriver",
"dependencies": {
"babel-polyfill": "^6.7.2",
"gulp-util": "^3.0.7",
Expand Down

0 comments on commit eec0b72

Please sign in to comment.