a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(multibase): add `workerd` condition for Cloudflare Workers support

closes https://github.com/mary-ext/atcute/pull/59

authored by

Jacob Ebey and committed by
Mary
f859da98 d38cf3e5

+7
+5
.changeset/nice-states-notice.md
··· 1 + --- 2 + "@atcute/multibase": patch 3 + --- 4 + 5 + add `workerd` condition for Cloudflare Workers support
+2
packages/utilities/multibase/package.json
··· 18 18 "imports": { 19 19 "#bases/base16": { 20 20 "bun": "./dist/bases/base16-web.js", 21 + "workerd": "./dist/bases/base16-web.js", 21 22 "node": "./dist/bases/base16-node.js", 22 23 "default": "./dist/bases/base16-web.js" 23 24 }, 24 25 "#bases/base64": { 25 26 "bun": "./dist/bases/base64-web.js", 27 + "workerd": "./dist/bases/base64-web.js", 26 28 "node": "./dist/bases/base64-node.js", 27 29 "default": "./dist/bases/base64-web.js" 28 30 }