i am using Ionic 2 and configured everything as per documentation but still i am not able to see latest changes on my app .
i am running below command its executing successfully and showing download successful message.
ionic upload --note “NOTE” --deploy dev
Is there any working example to use Ionic Deploy service
My Component code.
this.deploy.check().then((snapshotAvailable: boolean) => {
this.deploy.download().then(() => {
return this.deploy.extract().then(() =>{
this.deploy.load();
});
});
});