-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
91 lines (76 loc) · 2.43 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//copy paste fra Magnus
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
var sass = require('gulp-sass');
var browserify = require('browserify');
//var watchify = require('watchify');
var rename = require('gulp-rename');
var source = require('vinyl-source-stream');
var sourceFile = './scripts/main.js';
//var sourceFileE = './scripts/mainE.js';
var destFolder = './scripts/';
var destFile = 'bundle.js';
//var destFileE = 'bundleE.js';
// Static Server + watching scss/html files
gulp.task('serve', ['sass'], function() {
browserSync.init({
server: "./"
});
gulp.watch("*.scss", ['sass']);
gulp.watch("*.html").on('change', browserSync.reload);
});
// Compile sass into CSS & auto-inject into browsers
gulp.task('sass', function() {
return gulp.src("*.scss")
.pipe(sass())
.pipe(gulp.dest("css"))
.pipe(browserSync.stream());
});
/*
// Basic usage
gulp.task('scripts', function() {
// Single entry point to browserify
gulp.src('./scripts/main.js')
.pipe(browserify())
.pipe(rename('bundle.js'))
.pipe(gulp.dest('./'))
}); */
gulp.task('browserify', function() {
return browserify(sourceFile)
.bundle()
.pipe(source(destFile))
.pipe(gulp.dest(destFolder));
});
/*
gulp.task('browserify', function() {
return browserify(sourceFileE)
.bundle()
.pipe(source(destFileE))
.pipe(gulp.dest(destFolder));
});
*/
gulp.task('default', ['serve','browserify'], function(){ //['serve', 'data' 'watch' , ],
});
//https://semaphoreci.com/community/tutorials/setting-up-an-end-to-end-testing-workflow-with-gulp-mocha-and-webdriverio
const http = require('http');
const connect = require('connect');
const serveStatic = require('serve-static');
const Launcher = require('webdriverio/build/lib/launcher');
const path = require('path');
const wdio = new Launcher(path.join(__dirname, 'wdio.conf.js'));
var httpServer;
gulp.task('http', function (done) {
const app = connect().use(serveStatic('.'));
httpServer = http.createServer(app).listen(9000, done);
});
gulp.task('e2e', ['http'], function () {
return wdio.run(function (code) {
process.exit(code);
}, function (error) {
console.error('Launcher failed to start the test', error.stacktrace);
process.exit(1);
});
});
gulp.task('test', ['e2e'], function() {
httpServer.close();
});