This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree 4 files changed +3
-16
lines changed
4 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -47,4 +47,4 @@ maintain the existing coding style.
47
47
* 2015-09-09 v1.0.1 better Windows support, allow gulp-webdriver without options
48
48
* 2015-12-01 v1.0.2 bumped WebdriverIO version to 3.3.0
49
49
* 2015-12-01 v1.0.3 fixed wdio path on windows
50
- * 2016-03-16 v1.1.0-beta updated to ES6 and to use WebdriverIO 4 .0
50
+ * 2016-03-16 v2.0.0 updated codebase to ES6 and WebdriverIO to v4 .0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,12 +2,11 @@ import gulp from 'gulp'
2
2
import gutil from 'gulp-util'
3
3
4
4
import eslint from './gulp/eslint'
5
- import build from './gulp/build'
6
5
import test from './gulp/test'
7
6
8
7
const options = {
9
8
src : 'src' ,
10
- dist : 'l ' ,
9
+ dist : 'lib ' ,
11
10
test : 'test' ,
12
11
errorHandler : ( title ) => {
13
12
return ( err ) => {
@@ -17,7 +16,6 @@ const options = {
17
16
}
18
17
19
18
eslint ( options )
20
- build ( options )
21
19
test ( options )
22
20
23
21
gulp . task ( 'default' , [ 'clean' ] , ( ) => {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gulp-webdriver" ,
3
- "version" : " 1.1.0-beta " ,
3
+ "version" : " 2.0.0 " ,
4
4
"description" : " gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner" ,
5
5
"repository" : {
6
6
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments