v1.1.0-beta.0
What's Changed
ππ» 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