|
| 1 | +/*global __dirname */ |
| 2 | +import babelify from 'babelify'; |
| 3 | +import browserify from 'browserify'; |
| 4 | +import buffer from 'vinyl-buffer'; |
| 5 | +import eslint from 'gulp-eslint'; |
| 6 | +import gulp from 'gulp'; |
| 7 | +import gulpwatch from 'gulp-watch'; |
| 8 | +import gutil from 'gulp-util'; |
| 9 | +import historyApiFallback from 'connect-history-api-fallback'; |
| 10 | +import sequence from 'run-sequence'; |
| 11 | +import source from 'vinyl-source-stream'; |
| 12 | +import stringify from 'stringify'; |
| 13 | +import watchify from 'watchify'; |
| 14 | +import {server as karma} from 'karma'; |
| 15 | +import browsersync from 'browser-sync'; |
| 16 | + |
| 17 | +function handleError(task){ |
| 18 | + return function(err) { |
| 19 | + gutil.beep(); |
| 20 | + gutil.log(err); |
| 21 | + this.emit('end'); |
| 22 | + }; |
| 23 | +} |
| 24 | + |
| 25 | +function Build(watch, done){ |
| 26 | + var b; |
| 27 | + function transform(){ |
| 28 | + if( !b ){ |
| 29 | + b = browserify('./app/index.js', { |
| 30 | + debug: true, |
| 31 | + paths: ['./node_modules', './app/'], |
| 32 | + cache: {}, |
| 33 | + packageCache: {}, |
| 34 | + fullPaths: true |
| 35 | + }); |
| 36 | + |
| 37 | + if(watch){ |
| 38 | + b = watchify(b); |
| 39 | + } |
| 40 | + |
| 41 | + b.transform(babelify.configure({ |
| 42 | + stage: 0 |
| 43 | + })); |
| 44 | + |
| 45 | + b.transform(stringify(['.html'])); |
| 46 | + } |
| 47 | + |
| 48 | + function bundle(){ |
| 49 | + let stream = b.bundle() |
| 50 | + .on('error', handleError('Browserify')) |
| 51 | + .pipe(source('bundle.js')) |
| 52 | + .pipe(buffer()) |
| 53 | + .pipe(gulp.dest('./dist')); |
| 54 | + |
| 55 | + stream.on('end', browsersync.reload); |
| 56 | + |
| 57 | + return stream; |
| 58 | + } |
| 59 | + |
| 60 | + return bundle(); |
| 61 | + } |
| 62 | + |
| 63 | + gulp.task('bundle', ['lint'], function bundleTask(){ |
| 64 | + return transform(); |
| 65 | + }); |
| 66 | + |
| 67 | + gulp.task('bundle-light', function bundleLightTask(){ |
| 68 | + return transform(); |
| 69 | + }); |
| 70 | + |
| 71 | + gulp.task('test', function(done){ |
| 72 | + karma.start({ |
| 73 | + configFile: __dirname + '/karma.conf.js', |
| 74 | + singleRun: true |
| 75 | + }, done); |
| 76 | + }); |
| 77 | + |
| 78 | + function tdd(){ |
| 79 | + karma.start({ |
| 80 | + configFile: __dirname + '/karma.conf.js', |
| 81 | + singleRun: false, |
| 82 | + reporters: ['mocha'] |
| 83 | + }); |
| 84 | + } |
| 85 | + |
| 86 | + gulp.task('setup-watchers', function(){ |
| 87 | + gulpwatch(['app/**/*.js', 'app/**/*.html'], function(){ |
| 88 | + gulp.run('bundle'); |
| 89 | + }); |
| 90 | + |
| 91 | + gulp.run('serve'); |
| 92 | + tdd(); |
| 93 | + }); |
| 94 | + |
| 95 | + if(watch) |
| 96 | + { |
| 97 | + sequence('bundle', 'setup-watchers', done); |
| 98 | + } |
| 99 | + else |
| 100 | + { |
| 101 | + sequence('bundle', 'test', done); |
| 102 | + } |
| 103 | +} |
| 104 | + |
| 105 | +function serve(){ |
| 106 | + browsersync.init({ |
| 107 | + port: 2000, |
| 108 | + ui: { |
| 109 | + port: 2001 |
| 110 | + }, |
| 111 | + server: { |
| 112 | + baseDir: './dist', |
| 113 | + middleware: [historyApiFallback] |
| 114 | + } |
| 115 | + }); |
| 116 | +} |
| 117 | + |
| 118 | +gulp.task('serve', serve); |
| 119 | + |
| 120 | +gulp.task('default', function(done){ |
| 121 | + Build(true, done); |
| 122 | +}); |
| 123 | + |
| 124 | +gulp.task('build', function(done){ |
| 125 | + Build(false, done); |
| 126 | +}); |
| 127 | + |
| 128 | +gulp.task('lint', function(){ |
| 129 | + return gulp.src(['app/**/*.js', '!app/**/*.spec.js', '!app/**/*.e2e.js']) |
| 130 | + .pipe(eslint()) |
| 131 | + .pipe(eslint.format()); |
| 132 | +}); |
0 commit comments