mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
159cec7043
* Infrastructure for change management (history). * Always take latest commit from master * Allow history folder. * Lint fixes * Error handling, do not update LATEST if version writing failed Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { processChanges } from "../generic/history";
|
|
|
|
export async function main(): Promise<void> {
|
|
try {
|
|
await processChanges();
|
|
} catch(err) {
|
|
console.error(err);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|