Skip to content
Draft
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
9,102 changes: 8,120 additions & 982 deletions packages/bitcore-cli/package-lock.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions packages/bitcore-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"wallet": "./bin/wallet"
},
"scripts": {
"test": "npx mocha --require ts-node/register 'test/**/*.ts'",
"test": "tsc --noEmit && npx mocha -r tsx 'test/**/*.ts'",
"build": "tsc",
"postbuild": "node createBin -v",
"clean": "rm -rf ./build",
Expand All @@ -46,7 +46,6 @@
"commander": "14.0.0",
"crypto-wallet-core": "^11.4.5",
"external-editor": "3.1.0",
"ts-node": "10.9.2",
"usb": "2.15.0"
},
"devDependencies": {
Expand All @@ -57,7 +56,7 @@
"mocha": "^11.7.1",
"sinon": "^21.0.0",
"source-map-support": "0.5.16",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"gitHead": "d1c7f8b0c3a2e4f5b6c7d8e9f0a1b2c3d4e5f6g7"
Expand Down
2 changes: 1 addition & 1 deletion packages/bitcore-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"watch": "tsc --watch",
"precompile": "cd ../bitcore-node && npm run clean && npm run build:prod",
"compile": "npm run clean && npm run build",
"test": "mocha -r tsx test/**/*.test.ts",
"test": "tsc --noEmit && mocha -r tsx test/**/*.test.ts",
"precommit": "npm run lint; npm run fix:errors",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
Expand Down
Loading