Monorepo for Tailor Platform SDK development.
See package.json for required Node.js and pnpm versions.
pnpm install# Run all tests
pnpm test
# Build all packages
pnpm turbo run build
# Type checking
pnpm typecheck
# Linting
pnpm lint
pnpm lint:fix
# Format code
pnpm format
pnpm format:check
# Run all checks (format, lint:fix, typecheck)
pnpm check├── packages/
│ ├── sdk/ # Main Tailor Platform SDK package
│ ├── create-sdk/ # Project scaffolding CLI
│ └── tailor-proto/ # Protocol buffer definitions
└── example/ # Development and testing example
Releases are managed by Changesets and automated through CI/CD.
# Create a changeset for your changes
pnpm changeset