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 {
45
45
packageToInstall = packageName + "@" + version ;
46
46
}
47
47
48
- this . installCore ( pathToSave , packageToInstall ) . wait ( ) ;
48
+ this . installCore ( packageToInstall , pathToSave ) . wait ( ) ;
49
49
} catch ( error ) {
50
50
this . $logger . debug ( error ) ;
51
51
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 {
104
104
// One level up is the runtime module and one above is the node_modules folder.
105
105
this . $fs . deleteDirectory ( path . join ( "../" , frameworkDir ) ) . wait ( ) ;
106
106
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 ( ) ;
109
109
} ) . future < void > ( ) ( ) ;
110
110
}
111
111
You can’t perform that action at this time.
0 commit comments