Skip to content

Commit 5cc39e4

Browse files
committed
Merge branch 'release'
2 parents b96b7a6 + 58972dc commit 5cc39e4

File tree

165 files changed

+3965
-4056
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+3965
-4056
lines changed

config/eslint.config.mjs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@ export default [
3030
"@typescript-eslint/unbound-method": ["error", { ignoreStatic: true }],
3131
"@typescript-eslint/no-unsafe-member-access": "off",
3232
"@typescript-eslint/require-await": "off",
33+
"@typescript-eslint/only-throw-error": [
34+
"error",
35+
{
36+
allowThrowingAny: true,
37+
allowThrowingUnknown: true,
38+
allowRethrowing: true,
39+
},
40+
],
41+
"@typescript-eslint/prefer-promise-reject-errors": [
42+
"error",
43+
{
44+
allowThrowingAny: true,
45+
allowThrowingUnknown: true,
46+
},
47+
],
3348
"no-empty": "off",
3449
"prefer-const": [
3550
"error",
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
2-
31
/**
42
* @see https://prettier.io/docs/configuration
53
* @type {import("prettier").Config}
64
*/
75
const config = {
86
singleQuote: false,
97
trailingComma: "all",
10-
plugins: ["prettier-plugin-organize-imports"],
8+
plugins: [require.resolve("prettier-plugin-organize-imports")],
119
};
1210

13-
export default config;
11+
module.exports = config;

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"devDependencies": {
2222
"@changesets/changelog-github": "^0.5.1",
2323
"@changesets/cli": "^2.29.6",
24-
"@types/jest": "^29.5.14",
25-
"@vitest/coverage-v8": "3.2.2",
26-
"jest": "30.0.0-alpha.6",
24+
"@types/jest": "^30.0.0",
25+
"@vitest/coverage-v8": "3.2.4",
26+
"jest": "30.1.1",
2727
"ts-jest": "^29.4.1",
28-
"typedoc": "^0.26.11",
28+
"typedoc": "0.28.7",
2929
"typedoc-material-theme": "^1.4.0",
30-
"typedoc-plugin-extras": "^3.1.0",
30+
"typedoc-plugin-extras": "^4.0.1",
3131
"typedoc-plugin-ga": "^1.0.5",
3232
"typescript": "^5.9.2",
3333
"vitest": "^3.2.4"
@@ -38,10 +38,11 @@
3838
},
3939
"onlyBuiltDependencies": [
4040
"@nestjs/core",
41+
"@tailwindcss/oxide",
4142
"core-js",
4243
"core-js-pure",
43-
"secp256k1",
4444
"esbuild",
45+
"secp256k1",
4546
"sharp",
4647
"unrs-resolver"
4748
]

packages/ccc/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# @ckb-ccc/ccc
22

3+
## 1.1.19
4+
### Patch Changes
5+
6+
7+
8+
- [#290](https://github.com/ckb-devrel/ccc/pull/290) [`1b9b197`](https://github.com/ckb-devrel/ccc/commit/1b9b19754002461bbd37677a7a44a15c31fd537f) Thanks [@Hanssen0](https://github.com/Hanssen0)! - chore(deps): bump dependency version with `--latest`
9+
10+
- Updated dependencies [[`1b9b197`](https://github.com/ckb-devrel/ccc/commit/1b9b19754002461bbd37677a7a44a15c31fd537f)]:
11+
- @ckb-ccc/utxo-global@1.0.27
12+
- @ckb-ccc/eip6963@1.0.27
13+
- @ckb-ccc/uni-sat@1.0.27
14+
- @ckb-ccc/joy-id@1.0.27
15+
- @ckb-ccc/xverse@1.0.27
16+
- @ckb-ccc/nip07@1.0.27
17+
- @ckb-ccc/shell@1.1.19
18+
- @ckb-ccc/okx@1.0.27
19+
- @ckb-ccc/rei@1.0.27
20+
21+
## 1.1.18
22+
### Patch Changes
23+
24+
- Updated dependencies []:
25+
- @ckb-ccc/eip6963@1.0.26
26+
- @ckb-ccc/joy-id@1.0.26
27+
- @ckb-ccc/nip07@1.0.26
28+
- @ckb-ccc/okx@1.0.26
29+
- @ckb-ccc/rei@1.0.26
30+
- @ckb-ccc/shell@1.1.18
31+
- @ckb-ccc/uni-sat@1.0.26
32+
- @ckb-ccc/utxo-global@1.0.26
33+
- @ckb-ccc/xverse@1.0.26
34+
335
## 1.1.17
436
### Patch Changes
537

packages/ccc/eslint.config.mjs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@ export default [
3030
"@typescript-eslint/unbound-method": ["error", { ignoreStatic: true }],
3131
"@typescript-eslint/no-unsafe-member-access": "off",
3232
"@typescript-eslint/require-await": "off",
33+
"@typescript-eslint/only-throw-error": [
34+
"error",
35+
{
36+
allowThrowingAny: true,
37+
allowThrowingUnknown: true,
38+
allowRethrowing: true,
39+
},
40+
],
41+
"@typescript-eslint/prefer-promise-reject-errors": [
42+
"error",
43+
{
44+
allowThrowingAny: true,
45+
allowThrowingUnknown: true,
46+
},
47+
],
3348
"no-empty": "off",
3449
"prefer-const": [
3550
"error",

packages/ccc/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ckb-ccc/ccc",
3-
"version": "1.1.17",
3+
"version": "1.1.19",
44
"description": "CCC - CKBer's Codebase. Common Chains Connector.",
55
"author": "Hanssen0 <[email protected]>",
66
"license": "MIT",
@@ -48,9 +48,9 @@
4848
"eslint-plugin-prettier": "^5.5.4",
4949
"prettier": "^3.6.2",
5050
"prettier-plugin-organize-imports": "^4.2.0",
51-
"rimraf": "^5.0.10",
51+
"rimraf": "^6.0.1",
5252
"typescript": "^5.9.2",
53-
"typescript-eslint": "^7.18.0"
53+
"typescript-eslint": "^8.41.0"
5454
},
5555
"publishConfig": {
5656
"access": "public"
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
2-
31
/**
42
* @see https://prettier.io/docs/configuration
53
* @type {import("prettier").Config}
64
*/
75
const config = {
86
singleQuote: false,
97
trailingComma: "all",
10-
plugins: ["prettier-plugin-organize-imports"],
8+
plugins: [require.resolve("prettier-plugin-organize-imports")],
119
};
1210

13-
export default config;
11+
module.exports = config;

packages/ckb-ccc/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# ckb-ccc
22

3+
## 1.0.27
4+
### Patch Changes
5+
6+
7+
8+
- [#290](https://github.com/ckb-devrel/ccc/pull/290) [`1b9b197`](https://github.com/ckb-devrel/ccc/commit/1b9b19754002461bbd37677a7a44a15c31fd537f) Thanks [@Hanssen0](https://github.com/Hanssen0)! - chore(deps): bump dependency version with `--latest`
9+
10+
- Updated dependencies [[`1b9b197`](https://github.com/ckb-devrel/ccc/commit/1b9b19754002461bbd37677a7a44a15c31fd537f)]:
11+
- @ckb-ccc/ccc@1.1.19
12+
13+
## 1.0.26
14+
### Patch Changes
15+
16+
- Updated dependencies []:
17+
- @ckb-ccc/ccc@1.1.18
18+
319
## 1.0.25
420
### Patch Changes
521

packages/ckb-ccc/eslint.config.mjs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@ export default [
3030
"@typescript-eslint/unbound-method": ["error", { ignoreStatic: true }],
3131
"@typescript-eslint/no-unsafe-member-access": "off",
3232
"@typescript-eslint/require-await": "off",
33+
"@typescript-eslint/only-throw-error": [
34+
"error",
35+
{
36+
allowThrowingAny: true,
37+
allowThrowingUnknown: true,
38+
allowRethrowing: true,
39+
},
40+
],
41+
"@typescript-eslint/prefer-promise-reject-errors": [
42+
"error",
43+
{
44+
allowThrowingAny: true,
45+
allowThrowingUnknown: true,
46+
},
47+
],
3348
"no-empty": "off",
3449
"prefer-const": [
3550
"error",

packages/ckb-ccc/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ckb-ccc",
3-
"version": "1.0.25",
3+
"version": "1.0.27",
44
"description": "CCC - CKBer's Codebase. Common Chains Connector.",
55
"author": "Hanssen0 <[email protected]>",
66
"license": "MIT",
@@ -25,9 +25,9 @@
2525
"eslint-plugin-prettier": "^5.5.4",
2626
"prettier": "^3.6.2",
2727
"prettier-plugin-organize-imports": "^4.2.0",
28-
"rimraf": "^5.0.10",
28+
"rimraf": "^6.0.1",
2929
"typescript": "^5.9.2",
30-
"typescript-eslint": "^7.18.0"
30+
"typescript-eslint": "^8.41.0"
3131
},
3232
"publishConfig": {
3333
"access": "public"

0 commit comments

Comments
 (0)