mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
bf24ea2d8b
* Force include and exclude implementation. * Rename update to updateAuto * UpdateManual hooks * UpdateManual hook fix * Update existing tokenlist.json file, use exclude/include config. * Force include only pairs against the main currency. * PS config adjustment * Remove tokenlist_base files * Lint fix * Remove all pairs first. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
import { updateAutoAll } from "../generic/update-all";
|
|
|
|
export async function main(): Promise<void> {
|
|
try {
|
|
await updateAutoAll();
|
|
} catch(err) {
|
|
console.error(err);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|