46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
var Q = require('q');
 | 
						|
var readline = require('readline');
 | 
						|
var spawn = require('child_process').spawn;
 | 
						|
var util = require('./util');
 | 
						|
 | 
						|
module.exports = function(gulp, plugins, config) {
 | 
						|
  config.output = config.output || 'doc/api';
 | 
						|
  return function() {
 | 
						|
    return util.forEachSubDirSequential(config.dest, function(dir) {
 | 
						|
      var defer = Q.defer();
 | 
						|
      var done = defer.makeNodeResolver();
 | 
						|
 | 
						|
      var supportedModules = [
 | 
						|
        'dist/dart/angular2',
 | 
						|
        // TODO: blocked by https://github.com/angular/angular/issues/3518
 | 
						|
        // 'dist/dart/angular2_material',
 | 
						|
        'dist/dart/benchpress'
 | 
						|
      ];
 | 
						|
 | 
						|
      if (supportedModules.indexOf(dir) === -1) {
 | 
						|
        done();
 | 
						|
      } else {
 | 
						|
        console.log('INFO: running dartdoc for ', dir);
 | 
						|
 | 
						|
        var stream = spawn(config.command, ['--input=.', '--output=' + config.output], {
 | 
						|
          stdio: [process.stdin, process.stdout, process.stderr],
 | 
						|
          cwd: dir
 | 
						|
        });
 | 
						|
 | 
						|
        stream.on('exit', function(code) {
 | 
						|
          if (code !== 0) {
 | 
						|
            done('ERROR: dartdoc exited with non-zero status ' + code);
 | 
						|
          } else {
 | 
						|
            done();
 | 
						|
          }
 | 
						|
        });
 | 
						|
 | 
						|
        stream.on('error', function(e) {
 | 
						|
          done('ERROR: dartdoc reported error: ' + e);
 | 
						|
        });
 | 
						|
      }
 | 
						|
      return defer.promise;
 | 
						|
    });
 | 
						|
  };
 | 
						|
};
 |