File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 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 {
201201 getLatestVersion ( packageName : string ) : IFuture < string > {
202202 return Future . fromResult ( "" ) ;
203203 }
204+
205+ getCachedPackagePath ( packageName : string , version : string ) : string {
206+ return "" ;
207+ }
204208}
205209
206210export class ProjectDataStub implements IProjectData {
@@ -273,6 +277,12 @@ export class PlatformProjectServiceStub implements IPlatformProjectService {
273277 addLibrary ( platformData : IPlatformData , libraryPath : string ) : IFuture < void > {
274278 return Future . fromResult ( ) ;
275279 }
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+ }
276286}
277287
278288export class ProjectDataService implements IProjectDataService {
You can’t perform that action at this time.
0 commit comments