Blame view

node_modules/stackframe/gulpfile.js 1.77 KB
aaac7fed   liuqimichale   add
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
  var coveralls = require('gulp-coveralls');
  var del = require('del');
  var gulp = require('gulp');
  var jshint = require('gulp-jshint');
  var karma = require('karma');
  var rename = require('gulp-rename');
  var runSequence = require('run-sequence');
  var sourcemaps = require('gulp-sourcemaps');
  var uglify = require('gulp-uglify');
  
  var sources = 'stackframe.js';
  var minified = sources.replace('.js', '.min.js');
  
  gulp.task('lint', function() {
      return gulp.src(sources)
          .pipe(jshint())
          .pipe(jshint.reporter('default'))
          .pipe(jshint.reporter('fail'));
  });
  
  gulp.task('test', function(done) {
      new karma.Server({
          configFile: __dirname + '/karma.conf.js',
          singleRun: true
      }, done).start();
  });
  
  gulp.task('test-pr', ['copy', 'dist'], function(done) {
      new karma.Server({
          configFile: __dirname + '/karma.conf.js',
          browsers: ['Firefox', 'Chrome_Travis'],
          singleRun: true
      }, done).start();
  });
  
  gulp.task('test-ci', ['copy', 'dist'], function(done) {
      new karma.Server({
          configFile: __dirname + '/karma.conf.ci.js',
          singleRun: true
      }, done).start();
  });
  
  gulp.task('copy', function() {
      gulp.src(sources)
          .pipe(gulp.dest('dist'));
  });
  
  gulp.task('dist', ['copy'], function() {
      return gulp.src(sources)
          .pipe(sourcemaps.init())
          .pipe(uglify())
          .pipe(rename(minified))
          .pipe(sourcemaps.write('./'))
          .pipe(gulp.dest('dist'));
  });
  
  gulp.task('clean', del.bind(null, ['build', 'coverage', 'dist']));
  
  gulp.task('pr', ['lint', 'test-pr']);
  
  gulp.task('ci', ['lint', 'test-ci'], function() {
      gulp.src('./coverage/**/lcov.info')
          .pipe(coveralls());
  });
  
  gulp.task('default', ['clean'], function(cb) {
      runSequence('lint', ['copy', 'dist'], 'test', cb);
  });