re-add npm install for embark demo
This commit is contained in:
parent
0e502c1537
commit
569734a80d
|
@ -15,6 +15,11 @@ class TemplateGenerator {
|
||||||
utils.cd(fspath);
|
utils.cd(fspath);
|
||||||
utils.sed('package.json', '%APP_NAME%', name);
|
utils.sed('package.json', '%APP_NAME%', name);
|
||||||
|
|
||||||
|
if (name === 'embark_demo') {
|
||||||
|
console.log('Installing packages...'.green);
|
||||||
|
utils.runCmd('npm install');
|
||||||
|
}
|
||||||
|
|
||||||
console.log('Init complete'.green);
|
console.log('Init complete'.green);
|
||||||
console.log('\nApp ready at '.green + fspath);
|
console.log('\nApp ready at '.green + fspath);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue