UNPKG
@soleil-se/run
Version:
latest (1.4.3)
1.4.3
1.4.2
1.4.1
1.4.0
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
Run various utility scripts for creating apps, configs or migration tasks.
docs.soleil.se/build/run
@soleil-se/run
/
scripts
/
create-app.js
6 lines
(4 loc)
•
153 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ execSync }
from
'child_process'
;
export
default
function
createApp
(
) {
execSync
(
'npx @soleil-se/create-app@latest'
, {
stdio
:
'inherit'
}); }