mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
Add script/grunt
This commit is contained in:
parent
7f2e0e2317
commit
18f2f5f821
9
script/grunt
Executable file
9
script/grunt
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env node --harmony_collections
|
||||||
|
var cp = require('./utils/child-process-wrapper.js');
|
||||||
|
var path = require('path');
|
||||||
|
|
||||||
|
// node build/node_modules/grunt-cli/bin/grunt "$@"
|
||||||
|
var gruntPath = path.resolve(__dirname, '..', 'build', 'node_modules', 'grunt-cli', 'bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
||||||
|
var args = [gruntPath, '--gruntfile', path.resolve('build', 'Gruntfile.coffee')];
|
||||||
|
args = args.concat(process.argv.slice(2));
|
||||||
|
cp.safeSpawn(process.execPath, args, process.exit);
|
Loading…
Reference in New Issue
Block a user