Skip to content

Commit db4594e

Browse files
Keith-CYHanssen0
andauthored
Release v0.109.3 (ckb-js#640)
Co-authored-by: Hanssen <[email protected]> fix: commonjs support (ckb-js#639)
1 parent 13eb341 commit db4594e

File tree

16 files changed

+90
-21
lines changed

16 files changed

+90
-21
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)
7+
8+
9+
### Bug Fixes
10+
11+
* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))
12+
13+
14+
15+
16+
617
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
718

819

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "0.109.2"
2+
"version": "0.109.3"
33
}

packages/ckb-sdk-core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)
7+
8+
9+
### Bug Fixes
10+
11+
* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))
12+
13+
14+
15+
16+
617
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
718

819

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "module"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}

packages/ckb-sdk-core/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@nervosnetwork/ckb-sdk-core",
3-
"version": "0.109.2",
3+
"version": "0.109.3",
44
"description": "JavaScript SDK for Nervos Network CKB Project",
55
"author": "Nervos <[email protected]>",
66
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
77
"license": "MIT",
88
"main": "lib/index.js",
9+
"module": "lib-esm/index.js",
910
"typings": "lib/index.d.ts",
10-
"type": "module",
1111
"directories": {
1212
"lib": "lib",
1313
"lib-esm": "lib-esm",
@@ -41,17 +41,17 @@
4141
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
4242
},
4343
"scripts": {
44-
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
44+
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
4545
"test": "../../node_modules/.bin/jest"
4646
},
4747
"bugs": {
4848
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
4949
},
5050
"dependencies": {
51-
"@nervosnetwork/ckb-sdk-rpc": "0.109.2",
52-
"@nervosnetwork/ckb-sdk-utils": "0.109.2",
53-
"@nervosnetwork/ckb-types": "0.109.2",
51+
"@nervosnetwork/ckb-sdk-rpc": "0.109.3",
52+
"@nervosnetwork/ckb-sdk-utils": "0.109.3",
53+
"@nervosnetwork/ckb-types": "0.109.3",
5454
"tslib": "2.3.1"
5555
},
56-
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
56+
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
5757
}

packages/ckb-sdk-rpc/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)
7+
8+
9+
### Bug Fixes
10+
11+
* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))
12+
13+
14+
15+
16+
617
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
718

819

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "module"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}

packages/ckb-sdk-rpc/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@nervosnetwork/ckb-sdk-rpc",
3-
"version": "0.109.2",
3+
"version": "0.109.3",
44
"description": "RPC module of @nervosnetwork/ckb-sdk-core",
55
"author": "Nervos <[email protected]>",
66
"homepage": "https://github.com/ckb-js/ckb-sdk-js/packages/ckb-rpc#readme",
77
"license": "MIT",
88
"main": "lib/index.js",
9+
"module": "lib-esm/index.js",
910
"typings": "lib/index.d.ts",
10-
"type": "module",
1111
"directories": {
1212
"lib": "lib",
1313
"lib-esm": "lib-esm",
@@ -34,7 +34,7 @@
3434
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
3535
},
3636
"scripts": {
37-
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
37+
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
3838
"test": "../../node_modules/.bin/jest",
3939
"doc": "../../node_modules/.bin/typedoc --out docs --mode modules --includeDeclarations --excludeExternals --ignoreCompilerErrors --theme default",
4040
"test:watch": "../../node_modules/.bin/jest --watch"
@@ -43,12 +43,12 @@
4343
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
4444
},
4545
"dependencies": {
46-
"@nervosnetwork/ckb-sdk-utils": "0.109.2",
46+
"@nervosnetwork/ckb-sdk-utils": "0.109.3",
4747
"axios": "1.6.7",
4848
"tslib": "2.3.1"
4949
},
5050
"devDependencies": {
51-
"@nervosnetwork/ckb-types": "0.109.2"
51+
"@nervosnetwork/ckb-types": "0.109.3"
5252
},
53-
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
53+
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
5454
}

packages/ckb-sdk-utils/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)
7+
8+
9+
### Bug Fixes
10+
11+
* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))
12+
13+
14+
15+
16+
617
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
718

819

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "module"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}

packages/ckb-sdk-utils/package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "@nervosnetwork/ckb-sdk-utils",
3-
"version": "0.109.2",
3+
"version": "0.109.3",
44
"description": "Utils module of @nervosnetwork/ckb-sdk-core",
55
"author": "Nervos <[email protected]>",
66
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
77
"license": "MIT",
88
"main": "lib/index.js",
99
"module": "lib-esm/index.js",
1010
"types": "lib/index.d.ts",
11-
"type": "module",
1211
"directories": {
1312
"lib": "lib",
1413
"lib-esm": "lib-esm",
@@ -35,14 +34,14 @@
3534
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
3635
},
3736
"scripts": {
38-
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
37+
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
3938
"test": "../../node_modules/.bin/jest"
4039
},
4140
"bugs": {
4241
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
4342
},
4443
"dependencies": {
45-
"@nervosnetwork/ckb-types": "0.109.2",
44+
"@nervosnetwork/ckb-types": "0.109.3",
4645
"bech32": "2.0.0",
4746
"elliptic": "6.5.4",
4847
"jsbi": "3.1.3",
@@ -52,5 +51,5 @@
5251
"@types/bitcoinjs-lib": "5.0.0",
5352
"@types/elliptic": "6.4.12"
5453
},
55-
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
54+
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
5655
}

packages/ckb-types/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)
7+
8+
**Note:** Version bump only for package @nervosnetwork/ckb-types
9+
10+
11+
12+
13+
614
## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)
715

816
**Note:** Version bump only for package @nervosnetwork/ckb-types

packages/ckb-types/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nervosnetwork/ckb-types",
3-
"version": "0.109.2",
3+
"version": "0.109.3",
44
"description": "Type module of @nervosnetwork/ckb-sdk-core",
55
"author": "Nervos <[email protected]>",
66
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
@@ -20,5 +20,5 @@
2020
"bugs": {
2121
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
2222
},
23-
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
23+
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
2424
}

0 commit comments

Comments
 (0)