forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
76 lines (65 loc) · 2.21 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
var path = require('path');
var gulp = require('gulp');
const gulpIf = require('gulp-if');
var eslint = require('gulp-eslint');
var excludeGitignore = require('gulp-exclude-gitignore');
var mocha = require('gulp-mocha');
var istanbul = require('gulp-istanbul');
var plumber = require('gulp-plumber');
var coveralls = require('gulp-coveralls');
var documentation = require('gulp-documentation');
var glob = require('glob');
var guppy = require('git-guppy')(gulp);
var gitmodified = require('gulp-gitmodified');
var mustache = require("gulp-mustache");
function isFixed(file) {
// Has ESLint fixed the file contents?
console.log('fixed', file.eslint != null && file.eslint.fixed);
return file.eslint != null && file.eslint.fixed;
}
gulp.task('docs', function () {
glob.sync('./lib/helper/*.js').forEach((file) => {
var mustache = require("gulp-mustache");
gulp.src(file)
.pipe(gulp.dest('docs/build'))
.pipe(mustache({}, {extension: '.js'}))
.pipe(gulp.dest('docs/build'))
.pipe(documentation({ filename: path.basename(file, '.js') + '.md', shallow: true, format: 'md'}))
.pipe(gulp.dest('docs/helpers'));
});
var api = ['container', 'config', 'recorder', 'output', 'helper', 'codecept'];
api.forEach((baseName) => {
gulp.src(`./lib/${baseName}.js`)
.pipe(documentation({ filename: baseName + '.md', shallow: true, format: 'md'}))
.pipe(gulp.dest('docs/api'));
});
});
gulp.task('static', function () {
return gulp.src('lib/**/*.js')
// .pipe(gitmodified(['added', 'modified']))
.pipe(eslint({fix: true}))
// .pipe(eslint.format())
.pipe(gulp.dest('lib'));
});
gulp.task('pre-commit', ['static']);
gulp.task('test', function (cb) {
var mochaErr;
gulp.src(['./test/unit/**/*_test.js', './test/runner/**/*_test.js'])
.pipe(plumber())
.pipe(mocha({reporter: 'spec'}))
.on('error', function (err) {
mochaErr = err;
})
.on('end', function () {
cb(mochaErr);
});
});
gulp.task('coveralls', ['test'], function () {
if (!process.env.CI) {
return;
}
return gulp.src(path.join(__dirname, 'coverage/lcov.info'))
.pipe(coveralls());
});
gulp.task('prepublish', []);
gulp.task('default', ['static', 'test', 'coveralls']);