UNPKG
@vis.gl/dev-tools
Version:
beta (1.0.0-alpha.23)
latest (1.0.2)
1.0.2
1.0.1
1.0.0
1.0.0-alpha.23
1.0.0-alpha.22
1.0.0-alpha.21
1.0.0-alpha.20
1.0.0-alpha.19
1.0.0-alpha.18
1.0.0-alpha.16
1.0.0-alpha.15
1.0.0-alpha.14
1.0.0-alpha.13
1.0.0-alpha.12
1.0.0-alpha.11
1.0.0-alpha.10
1.0.0-alpha.9
1.0.0-alpha.8
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
Dev tools for vis.gl frameworks
github.com/visgl/dev-tools
visgl/dev-tools
@vis.gl/dev-tools
/
scripts
/
shell.js
12 lines
(10 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{execSync}
from
'child_process'
;
export
function
execShellCommand
(
command, args = []
) {
try
{
execSync
(
`
${command}
${args.join(
' '
)}
`
, {
stdio
:
'inherit'
}); }
catch
(err) { process.
exit
(err.
status
); } }