Skip to content

Commit

Permalink
Fix package.json, CI config (#14)
Browse files Browse the repository at this point in the history
* Fix package.json, CI config
  • Loading branch information
rekmarks authored and MajorLift committed Oct 11, 2023
1 parent 80451e4 commit ab14c18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
at: .
- run:
name: Unit tests
command: yarn build && yarn test
command: yarn test

all-tests-pass:
docker:
Expand Down
10 changes: 5 additions & 5 deletions merged-packages/json-rpc-middleware-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"version": "3.0.0",
"description": "A small toolset for streaming JSON-RPC data and matching requests and responses.",
"license": "ISC",
"main": "index.js",
"main": "dist/index.js",
"files": [
"index.js",
"engineStream.js"
"dist"
],
"scripts": {
"build": "tsc --project .",
"test": "node test/index.js",
"test": "yarn build && node test/index.js",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "eslint . --ext ts,js,json --fix"
"lint:fix": "eslint . --ext ts,js,json --fix",
"prepublishOnly": "yarn test"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
Expand Down

0 comments on commit ab14c18

Please sign in to comment.