Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 82bb81c

Browse files
v2.0.0
1 parent 93ff7fb commit 82bb81c

File tree

4 files changed

+3
-16
lines changed

4 files changed

+3
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ maintain the existing coding style.
4747
* 2015-09-09   v1.0.1    better Windows support, allow gulp-webdriver without options
4848
* 2015-12-01   v1.0.2    bumped WebdriverIO version to 3.3.0
4949
* 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

gulp/build.js

-11
This file was deleted.

gulpfile.babel.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ import gulp from 'gulp'
22
import gutil from 'gulp-util'
33

44
import eslint from './gulp/eslint'
5-
import build from './gulp/build'
65
import test from './gulp/test'
76

87
const options = {
98
src: 'src',
10-
dist: 'l',
9+
dist: 'lib',
1110
test: 'test',
1211
errorHandler: (title) => {
1312
return (err) => {
@@ -17,7 +16,6 @@ const options = {
1716
}
1817

1918
eslint(options)
20-
build(options)
2119
test(options)
2220

2321
gulp.task('default', ['clean'], () => {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-webdriver",
3-
"version": "1.1.0-beta",
3+
"version": "2.0.0",
44
"description": "gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)