Changeset 516 for Dev/trunk/node_modules/grunt/lib/grunt.js
- Timestamp:
- 03/14/14 12:36:58 (11 years ago)
- Location:
- Dev/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk
- Property svn:ignore
-
old new 1 1 build 2 quod-erat.git
-
- Property svn:ignore
-
Dev/trunk/node_modules/grunt/lib/grunt.js
r484 r516 3 3 * http://gruntjs.com/ 4 4 * 5 * Copyright (c) 201 3"Cowboy" Ben Alman5 * Copyright (c) 2014 "Cowboy" Ben Alman 6 6 * Licensed under the MIT license. 7 7 * https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT … … 23 23 return grunt[name] = require('./grunt/' + name); 24 24 } 25 var util = gRequire('util'); 25 26 var util = require('grunt-legacy-util'); 27 grunt.util = util; 28 grunt.util.task = require('./util/task'); 29 26 30 gRequire('template'); 27 31 gRequire('event'); … … 153 157 // allows the error callback to execute multiple times. 154 158 tasks.forEach(function(name) { task.run(name); }); 155 task.start(); 159 // Run tasks async internally to reduce call-stack, per: 160 // https://github.com/gruntjs/grunt/pull/1026 161 task.start({asyncDone:true}); 156 162 };
Note: See TracChangeset
for help on using the changeset viewer.