@ckb-ccc/rei 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ckb-ccc/rei
|
|
2
2
|
|
|
3
|
+
## 1.0.28
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- Updated dependencies [[`6cb6bfc`](https://github.com/ckb-devrel/ccc/commit/6cb6bfcc24af00b460ab7d112986088a9a526ecd)]:
|
|
7
|
+
- @ckb-ccc/core@1.12.1
|
|
8
|
+
|
|
9
|
+
## 1.0.27
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- [#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`
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`1b9b197`](https://github.com/ckb-devrel/ccc/commit/1b9b19754002461bbd37677a7a44a15c31fd537f), [`12c1e6b`](https://github.com/ckb-devrel/ccc/commit/12c1e6b751de220898ed94998027c7cf07c7a7dc), [`d382469`](https://github.com/ckb-devrel/ccc/commit/d382469ffca7934f19d0156af6939d7794808265), [`50b5537`](https://github.com/ckb-devrel/ccc/commit/50b553715f150ca7c68a661c7cbf8696ec674846)]:
|
|
17
|
+
- @ckb-ccc/core@1.12.0
|
|
18
|
+
|
|
3
19
|
## 1.0.26
|
|
4
20
|
### Patch Changes
|
|
5
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/rei",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"description": "CCC - CKBer's Codebase. Common Chains Connector's support for Rei",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"eslint-plugin-prettier": "^5.5.4",
|
|
43
43
|
"prettier": "^3.6.2",
|
|
44
44
|
"prettier-plugin-organize-imports": "^4.2.0",
|
|
45
|
-
"rimraf": "^
|
|
45
|
+
"rimraf": "^6.0.1",
|
|
46
46
|
"typescript": "^5.9.2",
|
|
47
|
-
"typescript-eslint": "^
|
|
47
|
+
"typescript-eslint": "^8.41.0"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@ckb-ccc/core": "1.
|
|
53
|
+
"@ckb-ccc/core": "1.12.1"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "rimraf ./dist && rimraf ./dist.commonjs && tsc && tsc --project tsconfig.commonjs.json && copyfiles -u 2 misc/basedirs/**/* .",
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* @see https://prettier.io/docs/configuration
|
|
5
3
|
* @type {import("prettier").Config}
|
|
@@ -7,7 +5,7 @@
|
|
|
7
5
|
const config = {
|
|
8
6
|
singleQuote: false,
|
|
9
7
|
trailingComma: "all",
|
|
10
|
-
plugins: ["prettier-plugin-organize-imports"],
|
|
8
|
+
plugins: [require.resolve("prettier-plugin-organize-imports")],
|
|
11
9
|
};
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
module.exports = config;
|