An open API service indexing awesome lists of open source software.

https://github.com/tailor-platform/sdk


https://github.com/tailor-platform/sdk

tailor-platform typescript

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

          

# Tailor Platform SDK

Monorepo for Tailor Platform SDK development.

## Prerequisites

See [package.json](package.json) for required Node.js and pnpm versions.

## Installation

```bash
pnpm install
```

## Development

```bash
# Run all tests
pnpm test

# Build all packages
pnpm 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

# Check CLI documentation matches command definitions
pnpm -C packages/sdk docs:check

# Update CLI documentation from command definitions
pnpm -C packages/sdk docs:update
```

## Structure

```
├── packages/
│ ├── sdk/ # Main Tailor Platform SDK package
│ ├── create-sdk/ # Project scaffolding CLI
│ └── tailor-proto/ # Protocol buffer definitions
└── example/ # Development and testing example
```

## Release

Releases are managed by Changesets and automated through CI/CD.

```bash
# Create a changeset for your changes
pnpm changeset
```