%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/**************/ /* REQUIRES */ /**************/ var gulp = require('gulp'); // File I/O var exit = require('gulp-exit'); var jshint = require('gulp-jshint'); // Testing var mocha = require('gulp-mocha'); var istanbul = require('gulp-istanbul'); /****************/ /* FILE PATHS */ /****************/ var paths = { js: [ 'index.js' ], tests: [ 'test.js' ] }; /***********/ /* TASKS */ /***********/ // Lints the JavaScript files gulp.task('lint', function() { return gulp.src(paths.js) .pipe(jshint()) .pipe(jshint.reporter('jshint-stylish')) .pipe(jshint.reporter('fail')) .on('error', function(error) { throw error; }); }); // Runs the Mocha test suite gulp.task('test', function() { return gulp.src(paths.js) .pipe(istanbul()) .pipe(istanbul.hookRequire()) .on('finish', function () { gulp.src(paths.tests) .pipe(mocha({ reporter: 'spec', timeout: 5000 })) .pipe(istanbul.writeReports()) .pipe(exit()); }); }); // Re-runs the linter every time a JavaScript file changes gulp.task('watch', function() { gulp.watch(paths.js, ['lint']); }); // Default task gulp.task('default', ['lint', 'test']);