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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
.pnpm-store/

# Artifacts
**/dist/
**/dist/

# Local development branch of ccc
packages/ccc
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@ graph TD;
click F "https://github.com/ickb/stack/tree/master/packages/sdk" "Go to @ickb/sdk"
```

## Develop CCC

Import locally unpublished CCC pull requests (PRs), for example when working with a PR that has not yet been published to canary. The first PR specified will be checked out.

```json
{
"overrides": {
"@ckb-ccc/core": "workspace:*"
},
"scripts": {
"preinstall": "pnpm install:ccc:pr",
"install:ccc:pr": " set -eux -- 314 261; cd packages; git clone https://github.com/ckb-devrel/ccc.git || exit 0; cd ccc; st=true; for p in $@; do git fetch origin pull/$p/head:pr-$p; if $st; then git checkout pr-$p; st=false; else git merge --no-ff --no-edit pr-$p; fi; done; pnpm -r install"
}
}
```

## Epoch Semantic Versioning

This repository follows [Epoch Semantic Versioning](https://antfu.me/posts/epoch-semver). In short ESV aims to provide a more nuanced and effective way to communicate software changes, allowing for better user understanding and smoother upgrades.
Expand Down
2 changes: 1 addition & 1 deletion apps/bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"provenance": true
},
"devDependencies": {
"@types/node": "^24.6.2"
"@types/node": "^24.7.0"
},
"dependencies": {
"@ckb-lumos/base": "^0.23.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/faucet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"provenance": true
},
"devDependencies": {
"@types/node": "^24.6.2"
"@types/node": "^24.7.0"
},
"dependencies": {
"@ckb-ccc/core": "catalog:",
Expand Down
6 changes: 3 additions & 3 deletions apps/interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@eslint/js": "^9.37.0",
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^22.18.8",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"@vitejs/plugin-react": "^4.7.0",
"babel-plugin-react-compiler": "latest",
Expand All @@ -35,7 +35,7 @@
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"typescript-eslint": "^8.46.0",
"vite": "^6.3.6"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"provenance": true
},
"devDependencies": {
"@types/node": "^24.6.2"
"@types/node": "^24.7.0"
},
"dependencies": {
"@ckb-lumos/base": "^0.23.0",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"private": true,
"scripts": {
"install:ccc:pr": " set -eux -- 314; cd packages; git clone https://github.com/ckb-devrel/ccc.git || exit 0; cd ccc; st=true; for p in $@; do git fetch origin pull/$p/head:pr-$p; if $st; then git checkout pr-$p; st=false; else git merge --no-ff --no-edit pr-$p; fi; done; pnpm -r install",
"test": "vitest",
"test:ci": "vitest run",
"test:cov": "vitest run --coverage",
Expand Down Expand Up @@ -29,7 +30,7 @@
"prettier-plugin-organize-imports": "^4.3.0",
"typedoc": "0.28.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.15.1"
Expand Down
Loading