mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
645fc1511a
On Linux "#!/usr/bin/env node --harmony_collections" is unfortunately not recognized by system.
11 lines
383 B
JavaScript
Executable File
11 lines
383 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
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);
|
|
});
|