Skip to content

Commit

Permalink
Release v0.109.3 (#640)
Browse files Browse the repository at this point in the history
Co-authored-by: Hanssen <[email protected]>
fix: commonjs support (#639)
  • Loading branch information
Keith-CY and Hanssen0 authored Aug 1, 2024
1 parent 13eb341 commit db4594e
Show file tree
Hide file tree
Showing 16 changed files with 90 additions and 21 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)


### Bug Fixes

* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))





## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.109.2"
"version": "0.109.3"
}
11 changes: 11 additions & 0 deletions packages/ckb-sdk-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)


### Bug Fixes

* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))





## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)


Expand Down
3 changes: 3 additions & 0 deletions packages/ckb-sdk-core/misc/basedirs/lib-esm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
3 changes: 3 additions & 0 deletions packages/ckb-sdk-core/misc/basedirs/lib/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
14 changes: 7 additions & 7 deletions packages/ckb-sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@nervosnetwork/ckb-sdk-core",
"version": "0.109.2",
"version": "0.109.3",
"description": "JavaScript SDK for Nervos Network CKB Project",
"author": "Nervos <[email protected]>",
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"type": "module",
"directories": {
"lib": "lib",
"lib-esm": "lib-esm",
Expand Down Expand Up @@ -41,17 +41,17 @@
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
},
"scripts": {
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
"test": "../../node_modules/.bin/jest"
},
"bugs": {
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-rpc": "0.109.2",
"@nervosnetwork/ckb-sdk-utils": "0.109.2",
"@nervosnetwork/ckb-types": "0.109.2",
"@nervosnetwork/ckb-sdk-rpc": "0.109.3",
"@nervosnetwork/ckb-sdk-utils": "0.109.3",
"@nervosnetwork/ckb-types": "0.109.3",
"tslib": "2.3.1"
},
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
}
11 changes: 11 additions & 0 deletions packages/ckb-sdk-rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)


### Bug Fixes

* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))





## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)


Expand Down
3 changes: 3 additions & 0 deletions packages/ckb-sdk-rpc/misc/basedirs/lib-esm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
3 changes: 3 additions & 0 deletions packages/ckb-sdk-rpc/misc/basedirs/lib/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
12 changes: 6 additions & 6 deletions packages/ckb-sdk-rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@nervosnetwork/ckb-sdk-rpc",
"version": "0.109.2",
"version": "0.109.3",
"description": "RPC module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <[email protected]>",
"homepage": "https://github.com/ckb-js/ckb-sdk-js/packages/ckb-rpc#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"type": "module",
"directories": {
"lib": "lib",
"lib-esm": "lib-esm",
Expand All @@ -34,7 +34,7 @@
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
},
"scripts": {
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
"test": "../../node_modules/.bin/jest",
"doc": "../../node_modules/.bin/typedoc --out docs --mode modules --includeDeclarations --excludeExternals --ignoreCompilerErrors --theme default",
"test:watch": "../../node_modules/.bin/jest --watch"
Expand All @@ -43,12 +43,12 @@
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-utils": "0.109.2",
"@nervosnetwork/ckb-sdk-utils": "0.109.3",
"axios": "1.6.7",
"tslib": "2.3.1"
},
"devDependencies": {
"@nervosnetwork/ckb-types": "0.109.2"
"@nervosnetwork/ckb-types": "0.109.3"
},
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
}
11 changes: 11 additions & 0 deletions packages/ckb-sdk-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)


### Bug Fixes

* commonjs support ([#639](https://github.com/ckb-js/ckb-sdk-js/issues/639)) ([b229d4e](https://github.com/ckb-js/ckb-sdk-js/commit/b229d4ede84e34820d236ccf22af9e24dd518c19))





## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)


Expand Down
3 changes: 3 additions & 0 deletions packages/ckb-sdk-utils/misc/basedirs/lib-esm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
3 changes: 3 additions & 0 deletions packages/ckb-sdk-utils/misc/basedirs/lib/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
9 changes: 4 additions & 5 deletions packages/ckb-sdk-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "@nervosnetwork/ckb-sdk-utils",
"version": "0.109.2",
"version": "0.109.3",
"description": "Utils module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <[email protected]>",
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"types": "lib/index.d.ts",
"type": "module",
"directories": {
"lib": "lib",
"lib-esm": "lib-esm",
Expand All @@ -35,14 +34,14 @@
"url": "git+https://github.com/ckb-js/ckb-sdk-js.git"
},
"scripts": {
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
"tsc": "tsc --project tsconfig.json && tsc --project tsconfig.esm.json && npx copyfiles -u 2 misc/basedirs/**/* .",
"test": "../../node_modules/.bin/jest"
},
"bugs": {
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-types": "0.109.2",
"@nervosnetwork/ckb-types": "0.109.3",
"bech32": "2.0.0",
"elliptic": "6.5.4",
"jsbi": "3.1.3",
Expand All @@ -52,5 +51,5 @@
"@types/bitcoinjs-lib": "5.0.0",
"@types/elliptic": "6.4.12"
},
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
}
8 changes: 8 additions & 0 deletions packages/ckb-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.109.3](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.2...v0.109.3) (2024-08-01)

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





## [0.109.2](https://github.com/ckb-js/ckb-sdk-js/compare/v0.109.1...v0.109.2) (2024-07-19)

**Note:** Version bump only for package @nervosnetwork/ckb-types
Expand Down
4 changes: 2 additions & 2 deletions packages/ckb-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nervosnetwork/ckb-types",
"version": "0.109.2",
"version": "0.109.3",
"description": "Type module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <[email protected]>",
"homepage": "https://github.com/ckb-js/ckb-sdk-js#readme",
Expand All @@ -20,5 +20,5 @@
"bugs": {
"url": "https://github.com/ckb-js/ckb-sdk-js/issues"
},
"gitHead": "ef6e8c929554a1d601a44b1562ffa585a707cc4d"
"gitHead": "bb703e9a16b9f467a88d6a1067162d296808fbc1"
}

0 comments on commit db4594e

Please sign in to comment.