2014-03-20 18:10:11 +04:00
|
|
|
#!/usr/bin/env node
|
2013-10-14 11:09:17 +04:00
|
|
|
var cp = require('./utils/child-process-wrapper.js');
|
2013-10-14 10:37:16 +04:00
|
|
|
var path = require('path');
|
2013-06-21 04:07:55 +04:00
|
|
|
|
2013-10-14 10:37:16 +04:00
|
|
|
process.chdir(path.dirname(__dirname));
|
2013-06-21 04:07:55 +04:00
|
|
|
|
2013-12-17 21:27:04 +04:00
|
|
|
cp.safeExec('node script/bootstrap', function() {
|
2014-01-03 21:29:45 +04:00
|
|
|
// build/node_modules/.bin/grunt "$@"
|
|
|
|
var gruntPath = path.join('build', 'node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
2014-01-04 03:17:55 +04:00
|
|
|
var args = ['--gruntfile', path.resolve('build', 'Gruntfile.coffee')];
|
2013-11-21 22:39:31 +04:00
|
|
|
args = args.concat(process.argv.slice(2));
|
2014-01-04 03:17:55 +04:00
|
|
|
cp.safeSpawn(gruntPath, args, process.exit);
|
2013-10-14 10:37:16 +04:00
|
|
|
});
|