zhangjian
2023-05-30 dabbcc356af21f9f2f88ac69ff07994e6e32e4fc
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
92
93
94
95
96
97
'use strict';
 
var gulp = require('gulp');
var jshint = require('gulp-jshint');
var exec = require('gulp-exec');
var stylish = require('jshint-stylish');
var browserify = require('gulp-browserify');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var karma = require('karma');
var coveralls = require('gulp-coveralls');
var istanbul = require('gulp-istanbul');
var mocha = require('gulp-mocha');
 
var paths = {
  index: './index.js',
  tests: './test/**/*.js'
};
 
function preTest(src) {
  return gulp.src(src)
    .pipe(istanbul())
    .pipe(istanbul.hookRequire());
}
 
function test(src){
  return gulp.src(src)
    .pipe(mocha())
    .pipe(istanbul.writeReports());
}
 
function testKarma(done){
  new karma.Server({
    configFile: __dirname + '/karma.conf.js',
    singleRun: true
  }, done).start();
}
 
function lint(src){
  return gulp.src(src)
    .pipe(jshint('.jshintrc'))
    .pipe(jshint.reporter(stylish));
}
 
gulp.task('dist', function(){
  gulp.src([paths.index])
    .pipe(browserify({
      insertGlobals : true,
      debug: true,
      standalone: 'objectHash'
    }))
    .pipe(rename('object_hash.js'))
    .pipe(uglify({outSourceMap: true}))
    .pipe(gulp.dest('./dist'));
    // tests
  gulp.src([paths.tests])
    .pipe(browserify())
    .pipe(rename('object_hash_test.js'))
    .pipe(gulp.dest('./dist'));
});
 
gulp.task('pre-test', function() {
  preTest([paths.index]);
});
 
gulp.task('test', ['pre-test'], function() {
  test([paths.tests]);
});
 
gulp.task('karma', function() {
  testKarma();
});
 
gulp.task('coveralls', function() {
  gulp.src('coverage/**/lcov.info')
    .pipe(coveralls());
});
 
gulp.task('lint', function () {
  return lint([paths.index]);
});
 
gulp.task('watch', function () {
 
  // watch and lint any files that are added or changed
  gulp.watch([paths.index, paths.tests], function(event){
    if(event.type !== 'deleted') {
      lint([event.path]);
    }
  });
 
  // run the tests when something changes
  gulp.watch([paths.index, paths.tests], ['test', 'karma']);
 
});
 
gulp.task('default', ['watch']);