Skip to content
Open
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
27 changes: 18 additions & 9 deletions modules/abstract-utxo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/abstract-utxo",
"version": "10.23.1",
"version": "10.24.0",
"description": "BitGo SDK coin library for UTXO base implementation",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/index.js",
Expand All @@ -25,7 +25,7 @@
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "yarn tsc --build --incremental --verbose .",
"build:esm": "yarn tsc --project tsconfig.esm.json",
"build:esm": "yarn tsc --project tsconfig.esm.json && yarn tsc-alias -p tsconfig.esm.json",
"fmt": "prettier --write '{src,test}/**/*.{ts,js,json}'",
"check-fmt": "prettier --check '{src,test}/**/*.{ts,js,json}'",
"clean": "rm -rf ./dist",
Expand Down Expand Up @@ -59,14 +59,22 @@
".ts"
]
},
"tsc-alias": {
"replacers": [
{
"enabled": true,
"file": "tsc-alias/dist/replacers/fileExtensionReplacer.js"
}
]
},
"dependencies": {
"@bitgo/blockapis": "^1.13.4",
"@bitgo/sdk-api": "^1.77.0",
"@bitgo/sdk-core": "^36.40.0",
"@bitgo/utxo-core": "^1.36.0",
"@bitgo/sdk-api": "^1.79.0",
"@bitgo/sdk-core": "^36.42.0",
"@bitgo/utxo-core": "^1.36.1",
"@bitgo/utxo-lib": "^11.22.0",
"@bitgo/utxo-ord": "^1.29.0",
"@bitgo/wasm-utxo": "^4.1.0",
"@bitgo/utxo-ord": "^1.29.1",
"@bitgo/wasm-utxo": "^4.8.0",
"@types/lodash": "^4.14.121",
"@types/superagent": "4.1.15",
"bignumber.js": "^9.0.2",
Expand All @@ -76,8 +84,9 @@
"superagent": "^9.0.1"
},
"devDependencies": {
"@bitgo/sdk-test": "^9.1.38",
"mocha": "^10.2.0"
"@bitgo/sdk-test": "^9.1.40",
"mocha": "^10.2.0",
"tsc-alias": "^1.8.10"
},
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}
17 changes: 14 additions & 3 deletions modules/utxo-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/utxo-core",
"version": "1.36.0",
"version": "1.36.1",
"description": "BitGo UTXO Core types",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/index.js",
Expand Down Expand Up @@ -47,7 +47,7 @@
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "yarn tsc --build --incremental --verbose .",
"build:esm": "yarn tsc --project tsconfig.esm.json",
"build:esm": "yarn tsc --project tsconfig.esm.json && yarn tsc-alias -p tsconfig.esm.json",
"fmt": "prettier --write .",
"check-fmt": "prettier --check '**/*.{ts,js,json}'",
"clean": "rm -r ./dist",
Expand Down Expand Up @@ -77,13 +77,24 @@
".ts"
]
},
"tsc-alias": {
"replacers": [
{
"enabled": true,
"file": "tsc-alias/dist/replacers/fileExtensionReplacer.js"
}
]
},
"dependencies": {
"@bitgo/secp256k1": "^1.11.0",
"@bitgo/unspents": "^0.51.3",
"@bitgo/utxo-lib": "^11.22.0",
"@bitgo/wasm-utxo": "^4.1.0",
"@bitgo/wasm-utxo": "^4.8.0",
"bip174": "npm:@bitgo-forks/bip174@3.1.0-master.4",
"fast-sha256": "^1.3.0"
},
"devDependencies": {
"tsc-alias": "^1.8.10"
},
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}
3 changes: 3 additions & 0 deletions scripts/fix-esm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Retired: ESM import path rewriting is now handled by tsc-alias.
// See modules/*/package.json build:esm scripts and the tsc-alias
// configuration (fileExtensionReplacer) in each module's package.json.