diff --git a/dist/index.js b/dist/index.js index bd9dc09..1acd066 100644 --- a/dist/index.js +++ b/dist/index.js @@ -95647,6 +95647,7 @@ idslib.onMain(async () => { console.log(await getDetails()); await setUpAutoCache(idslib); await notifyAutoCache(); + throw new Error("hi"); }); idslib.onPost(async () => { await tearDownAutoCache(); diff --git a/src/index.ts b/src/index.ts index 419cef9..b94cc39 100644 --- a/src/index.ts +++ b/src/index.ts @@ -317,6 +317,7 @@ idslib.onMain(async () => { console.log(await platform.getDetails()); await setUpAutoCache(idslib); await notifyAutoCache(); + throw new Error("hi"); }); idslib.onPost(async () => { await tearDownAutoCache();