Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 613 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (20 loc) · 613 Bytes

Contributor guide

Running commands

Commands can be run from the root or scoped to specific directories/workspaces

# From the root:
# > yarn {cmd} [dir]
# Ex:
yarn test
yarn test packages/client

# From inside package directory
# > cd packages/{dir} && yarn run -T {cmd}
# Ex:
cd packages/client && yarn run -T test

# From any directory, specifying workspace
# > yarn workspace {workspace} run  {cmd}
# Ex:
yarn workspace contexture-client run test .

Tests

Tests can be scoped via vitest --project {project}. Refer to vitest's workspaces for project names.