File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,10 @@ export class NPMStub implements INodePackageManager {
201
201
getLatestVersion ( packageName : string ) : IFuture < string > {
202
202
return Future . fromResult ( "" ) ;
203
203
}
204
+
205
+ getCachedPackagePath ( packageName : string , version : string ) : string {
206
+ return "" ;
207
+ }
204
208
}
205
209
206
210
export class ProjectDataStub implements IProjectData {
@@ -273,6 +277,12 @@ export class PlatformProjectServiceStub implements IPlatformProjectService {
273
277
addLibrary ( platformData : IPlatformData , libraryPath : string ) : IFuture < void > {
274
278
return Future . fromResult ( ) ;
275
279
}
280
+ canUpdatePlatform ( currentVersion : string , newVersion : string ) : IFuture < boolean > {
281
+ return Future . fromResult ( false ) ;
282
+ }
283
+ updatePlatform ( currentVersion : string , newVersion : string ) : IFuture < void > {
284
+ return Future . fromResult ( ) ;
285
+ }
276
286
}
277
287
278
288
export class ProjectDataService implements IProjectDataService {
You can’t perform that action at this time.
0 commit comments