mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-29 01:27:00 +03:00
11 lines
405 B
JavaScript
Executable File
11 lines
405 B
JavaScript
Executable File
#!/usr/bin/env node --harmony_collections
|
|
var safeExec = require('./utils/child-process-wrapper.js').safeExec;
|
|
var path = require('path');
|
|
|
|
process.chdir(path.dirname(__dirname));
|
|
|
|
safeExec('node script/bootstrap', function() {
|
|
var gruntPath = path.join('node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
|
safeExec(gruntPath + ' ci --stack --no-color', process.exit);
|
|
});
|