mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
18 lines
645 B
JavaScript
Executable File
18 lines
645 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
var cp = require('./utils/child-process-wrapper.js');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
// node build/node_modules/.bin/grunt "$@"
|
|
var gruntPath = path.resolve(__dirname, '..', 'build', 'node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
|
|
|
if (!fs.existsSync(gruntPath)) {
|
|
console.error('Grunt command does not exist at: ' + gruntPath);
|
|
console.error('Run script/bootstrap to install Grunt');
|
|
process.exit(1);
|
|
}
|
|
|
|
var args = ['--gruntfile', path.resolve('build', 'Gruntfile.coffee')];
|
|
args = args.concat(process.argv.slice(2));
|
|
cp.safeSpawn(gruntPath, args, process.exit);
|