Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ This project uses [Changesets](https://github.com/changesets/changesets) to mana
pnpm changeset add
```

## Generated freshness checks

Before pushing changes that touch GraphQL operations, command definitions, flags, autogenerated examples, or CLI
documentation, run:

```
pnpm generate:all
```

This runs all generators checked by `.github/workflows/tests-pr.yml`. Commit any generated file changes before pushing.

### Choosing the right bump type

The CLI follows [semantic versioning](https://semver.org). Pick the bump type that matches the nature of your change:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"test": "pnpm vitest run",
"type-check:affected": "nx affected --target=type-check",
"type-check": "nx run-many --target=type-check --all --skip-nx-cache",
"update-bugsnag": "bin/update-bugsnag.js"
"update-bugsnag": "bin/update-bugsnag.js",
"generate:all": "pnpm graphql-codegen:get-graphql-schemas && pnpm graphql-codegen && pnpm build --output-style=stream && pnpm refresh-manifests && pnpm refresh-readme && pnpm refresh-code-documentation && pnpm build-dev-docs"
},
"devDependencies": {
"@bugsnag/source-maps": "^2.3.1",
Expand Down
Loading