forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsb
executable file
·45 lines (43 loc) · 1.65 KB
/
bsb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env node
"use strict";
var child_process = require('child_process')
var fs = require('fs')
var bsconfig = 'bsconfig.json'
var bsb_exe = __filename + ".exe"
var delegate_args = process.argv.slice(2)
// if (fs.existsSync(bsconfig)) {
// Note we make `bsb` behaves more similar to `bsb.exe`
// Since it does not make sense that `bsb -h` will raise (here it would check bsconfig.json)
// also `bsb -init project-name` should not break
try {
child_process.execFileSync(bsb_exe, delegate_args, { stdio: 'inherit' })
} catch (e) {
console.log(String(e))
console.error('Error happened when running command', bsb_exe, 'with args', delegate_args)
process.exit(2)
}
// } else {
// var path = require('path')
// var last_dir = process.cwd()
// var search_dir = last_dir
// do {
// last_dir = search_dir
// search_dir = path.dirname(last_dir)
// } while (!fs.existsSync(path.join(search_dir, bsconfig)) && (search_dir.length !== last_dir.length))
// if (search_dir.length === last_dir.length) {
// console.error('bsconfig.json not found in current directory and its parent')
// process.exit(2)
// } else {
// console.log("Root project : " , search_dir)
// try {
// child_process.execFileSync(bsb_exe, delegate_args, { stdio: 'inherit', cwd: search_dir })
// } catch (e) {
// console.error('Error happened when running command', bsb_exe, 'with args', delegate_args)
// process.exit(2)
// }
// }
// }
// function uncaughtHandler(err){
// console.error('command failed')
// }
// process.on('uncaughtException',uncaughtHandler)