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: 5 additions & 0 deletions .changeset/silver-eels-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@offckb/cli': patch
---

Bump default CKB version to 0.207.0
2 changes: 1 addition & 1 deletion src/cfg/setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
proxy: undefined,
bins: {
rootFolder: path.resolve(dataPath, 'bins'),
defaultCKBVersion: '0.205.0',
defaultCKBVersion: '0.207.0',
downloadPath: path.resolve(cachePath, 'download'),
},
devnet: {
Expand Down Expand Up @@ -129,7 +129,7 @@
return path.join(getCKBBinaryInstallPath(version), binaryName);
}

function deepMerge(target: any, source: any): any {

Check warning on line 132 in src/cfg/setting.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check warning on line 132 in src/cfg/setting.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

Check warning on line 132 in src/cfg/setting.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type
for (const key in source) {
if (source[key] && typeof source[key] === 'object') {
if (!target[key]) {
Expand Down
Loading