Skip to content

Commit

Permalink
Merge pull request #95 from etclabscore/fix/build-steps-missing
Browse files Browse the repository at this point in the history
fix: build missing some steps
  • Loading branch information
BelfordZ authored Jan 16, 2020
2 parents 64ae238 + f751343 commit b6ba9f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"clean": "rm -rf build && mkdir -p build",
"build": "npm run clean && npm run generate-clients -- --ts-name=@etclabscore/ethereum-json-rpc --rs-name=ethereum-json-rpc -o build/",
"publish": "npm run publish:typescript && npm run publish:rust",
"publish:typescript": "cd build/typescript && npm publish --access=public",
"publish:rust": "cd build/rust && cargo package && cargo publish --token $CARGO_TOKEN"
"publish:typescript": "cd build/typescript && npm install && npm run build && npm publish --access=public",
"publish:rust": "cd build/rust && cargo build && cargo package && cargo publish --token $CARGO_TOKEN"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b6ba9f2

Please sign in to comment.