Skip to content

v1.1.0-beta.0

Choose a tag to compare

@mattfik mattfik released this 11 Nov 21:09
· 141 commits to main since this release
71cc242

What's Changed

  • Overhaul building, workflows. Fix examples up. by @mattfik in #53

πŸ‘‹πŸ» Goodbye bun, hello pnpm!
πŸš€ 60%+ smaller bundle size for end users
⚑ Better tree-shaking with ESM support. Falls back to CommonJS.
πŸ›  Modern tooling throughout development workflow
πŸ“¦ Production-ready package structure
🚫 No build scripts in the SDK!
🚫 Removed all files that were generated or fetched at build time. i.e. schemas, network configs, etc.
🚫 Remove fragment masking since it's generic and not used in the sdk directly.

Breaking Changes

Imports

Before

import { Codex } from "@codex-data/sdk";
import { TokenRankingAttribute, RankingDirection } from "@codex-data/sdk/dist/sdk/generated/graphql";

After

import { Codex, TokenRankingAttribute, RankingDirection } from "@codex-data/sdk";

Full Changelog: v1.0.40...v1.1.0-beta.0