Bluesky app fork with some witchin' additions 馃挮
1diff --git a/dist/index.js b/dist/index.js
2index 7ee0a48..8e91857 100644
3--- a/dist/index.js
4+++ b/dist/index.js
5@@ -15,8 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
6 };
7 Object.defineProperty(exports, "__esModule", { value: true });
8 exports.buildLoopbackClientId = void 0;
9-require("core-js/modules/esnext.symbol.async-dispose");
10-require("core-js/modules/esnext.symbol.dispose");
11+
12+if (typeof Symbol.dispose === 'undefined') {
13+ Symbol.dispose = Symbol('Symbol.dispose');
14+}
15+if (typeof Symbol.asyncDispose === 'undefined') {
16+ Symbol.asyncDispose = Symbol('Symbol.asyncDispose');
17+}
18+
19 __exportStar(require("@atproto/jwk-webcrypto"), exports);
20 __exportStar(require("@atproto/oauth-client"), exports);
21 __exportStar(require("./browser-oauth-client.js"), exports);
22diff --git a/dist/indexed-db/db-transaction.js b/dist/indexed-db/db-transaction.js
23index d67da55..6605feb 100644
24--- a/dist/indexed-db/db-transaction.js
25+++ b/dist/indexed-db/db-transaction.js
26@@ -13,7 +13,9 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
27 var _DBTransaction_tx;
28 Object.defineProperty(exports, "__esModule", { value: true });
29 exports.DBTransaction = void 0;
30-require("core-js/modules/esnext.symbol.dispose");
31+if (typeof Symbol.dispose === 'undefined') {
32+ Symbol.dispose = Symbol('Symbol.dispose');
33+}
34 const db_object_store_js_1 = require("./db-object-store.js");
35 class DBTransaction {
36 constructor(tx) {
37diff --git a/dist/indexed-db/db.js b/dist/indexed-db/db.js
38index eaaf61a..4315b95 100644
39--- a/dist/indexed-db/db.js
40+++ b/dist/indexed-db/db.js
41@@ -13,7 +13,9 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
42 var _DB_db;
43 Object.defineProperty(exports, "__esModule", { value: true });
44 exports.DB = void 0;
45-require("core-js/modules/esnext.symbol.dispose");
46+if (typeof Symbol.dispose === 'undefined') {
47+ Symbol.dispose = Symbol('Symbol.dispose');
48+}
49 const db_transaction_js_1 = require("./db-transaction.js");
50 class DB {
51 static async open(dbName, migrations, txOptions) {