Ignore:
Timestamp:
03/14/14 12:36:58 (11 years ago)
Author:
hendrikvanantwerpen
Message:

Enable deployment with Grunt.

Location:
Dev/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk

    • Property svn:ignore
      •  

        old new  
        11build
        2 quod-erat.git
  • Dev/trunk/node_modules/grunt/lib/grunt.js

    r484 r516  
    33 * http://gruntjs.com/
    44 *
    5  * Copyright (c) 2013 "Cowboy" Ben Alman
     5 * Copyright (c) 2014 "Cowboy" Ben Alman
    66 * Licensed under the MIT license.
    77 * https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
     
    2323  return grunt[name] = require('./grunt/' + name);
    2424}
    25 var util = gRequire('util');
     25
     26var util = require('grunt-legacy-util');
     27grunt.util = util;
     28grunt.util.task = require('./util/task');
     29
    2630gRequire('template');
    2731gRequire('event');
     
    153157  // allows the error callback to execute multiple times.
    154158  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});
    156162};
Note: See TracChangeset for help on using the changeset viewer.