(1.0.15) bump

This commit is contained in:
2025-11-29 23:15:37 +00:00
parent 3bae392285
commit 8c3dd4c2e3
3 changed files with 9 additions and 3 deletions

5
dist/index.cjs.js vendored
View File

@@ -240,7 +240,10 @@ class Updater {
progressCallback(`Error on remote`); progressCallback(`Error on remote`);
reject("Error: command does not exist"); reject("Error: command does not exist");
} }
}, () => { reject("Error: Failed to start notify"); }); }, (error) => {
reject("Error: Failed to start notify");
console.error(error);
});
}); });
} }
} }

5
dist/index.es.js vendored
View File

@@ -238,7 +238,10 @@ class Updater {
progressCallback(`Error on remote`); progressCallback(`Error on remote`);
reject("Error: command does not exist"); reject("Error: command does not exist");
} }
}, () => { reject("Error: Failed to start notify"); }); }, (error) => {
reject("Error: Failed to start notify");
console.error(error);
});
}); });
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "updaterweblibrary", "name": "updaterweblibrary",
"version": "1.0.14", "version": "1.0.15",
"description": "OTA Updater App frontend library", "description": "OTA Updater App frontend library",
"repository": { "repository": {
"type": "git", "type": "git",