File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export class NodePackageManager implements INodePackageManager {
4545 packageToInstall = packageName + "@" + version ;
4646 }
4747
48- this . installCore ( pathToSave , packageToInstall ) . wait ( ) ;
48+ this . installCore ( packageToInstall , pathToSave ) . wait ( ) ;
4949 } catch ( error ) {
5050 this . $logger . debug ( error ) ;
5151 this . $errors . fail ( NodePackageManager . NPM_LOAD_FAILED ) ;
Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ export class PlatformService implements IPlatformService {
104104 // One level up is the runtime module and one above is the node_modules folder.
105105 this . $fs . deleteDirectory ( path . join ( "../" , frameworkDir ) ) . wait ( ) ;
106106
107- platformData . platformProjectService . interpolateData ( platformData . projectRoot ) ;
108- platformData . platformProjectService . afterCreateProject ( platformData . projectRoot ) ;
107+ platformData . platformProjectService . interpolateData ( platformData . projectRoot ) . wait ( ) ;
108+ platformData . platformProjectService . afterCreateProject ( platformData . projectRoot ) . wait ( ) ;
109109 } ) . future < void > ( ) ( ) ;
110110 }
111111
You can’t perform that action at this time.
0 commit comments