mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
68e0cc6d90
* Add ESLint infrastructure. * Lint auto fixes. * Lint fixes. * Lint fixes. * Add Lint to CI builds. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
import { updateAll } from "../action/update-all";
|
|
|
|
export async function main(): Promise<void> {
|
|
try {
|
|
await updateAll();
|
|
} catch(err) {
|
|
console.error(err);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|