Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
toolchain: format

- name: Generate Clients
run: pnpm generate:clients
run: make generate-clients

- name: Check Working Directory
run: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ lint-features-%:
test-%:
cargo $(nightly) test --manifest-path $(subst -,/,$*)/Cargo.toml

generate-clients:
pnpm codama run --all $(ARGS)

format-js:
cd ./clients/js && pnpm install && pnpm format

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pnpm install
You can generate clients for them using the following command.

```sh
pnpm generate:clients
make generate-clients
```

## Managing clients
Expand Down
5 changes: 3 additions & 2 deletions clients/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@
},
"homepage": "https://github.com/solana-program/system#readme",
"peerDependencies": {
"@solana/kit": "^6.0.0"
"@solana/kit": "^6.1.0"
},
"devDependencies": {
"@solana/eslint-config-solana": "^6.0.0",
"@solana/kit": "^6.0.0",
"@solana/kit-plugins": "^0.5.0",
"@solana/kit": "^6.1.0",
"@types/node": "^24",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
Expand Down
Loading