56. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/24/2017 6:38:27 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

56.1 Files compared

# Location File Last Modified
1 CHAMP_VA1.zip\CHAMP_VA1 gulpfile.js Mon Oct 16 21:06:50 2017 UTC
2 CHAMP_VA1.zip\CHAMP_VA1 gulpfile.js Mon Oct 23 19:57:42 2017 UTC

56.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 74
Changed 1 2
Inserted 0 0
Removed 0 0

56.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

56.4 Active regular expressions

No regular expressions were active.

56.5 Comparison detail

  1   var gulp              = require( "gulp"),
  2       mocha             = require( 'gulp-moch a'),
  3       mochaP hantomJS   = require( "gulp-moch a-phantomj s");
  4  
  5   const conf ig         = require( './config' );    
  6  
  7   gulp.task( 'webserver ', functio n() {
  8       var we bserver =  require('g ulp-webser ver');
  9       return  gulp.src( config.APP DIR).pipe( webserver( {
  10           fa llback: '/ ',
  11             port:  PORT ,
  12           lo gLevel: 'v erbose',
  13           wa itforTimeo ut: 10000
  14       }));
  15   });
  16  
  17   //no effec t
  18   gulp.task( 'app', fun ction() {
  19       var no demon = re quire('gul p-nodemon' );
  20       nodemo n({
  21           st dout: fals e,
  22           sc ript: conf ig.APPDIR  + '/app.js ',
  23           en v: { 'NODE _ENV': 'de velopment'  }
  24       });
  25   });
  26  
  27   gulp.task( "mocha", f unction ()  {
  28       return  gulp.src( './test/in dex.js', { read: fals e})
  29           .p ipe(mocha( {reporter:  'spec'}))
  30           .o nce('error ', functio n () {
  31                process. exit(1);
  32           })
  33           .o nce('end',  function  () {
  34                process. exit();
  35           }) ;
  36   });
  37  
  38   gulp.task( "test", [" app","moch a"]);