UNPKG
create-node-blueprint
Version:
latest (1.6.1)
1.6.1
1.6.0
1.5.0
1.4.0
1.3.2
A cli tool to generate nodejs project
create-node-blueprint
/
dist
/
src
/
utils
/
exec-async.js
4 lines
(3 loc)
•
124 B
JavaScript
View Raw
1
2
3
4
import
{ promisify }
from
"node:util"
;
import
{ exec }
from
"node:child_process"
;
export
const
execAsync =
promisify
(exec);