Skip to content

Commit

Permalink
updated package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
zianksm committed Dec 18, 2022
1 parent 7b90fd7 commit 418fd52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "smartcontract-type-binding-generator",
"version": "1.0.3",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zianksm/smartcontract-type-binding-generator.git"
},
"scripts": {
"build": "npx tsc",
"go": "npm run build && npm publish"
Expand Down
2 changes: 1 addition & 1 deletion test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const abi = fs.readFileSync("./abi/auctions/auction.json");
const writer = new Writer();
const output = writer.write("test", abi.toString("utf-8"), {
lang: "js",
truffle: false,
truffle: true,
});

fs.writeFileSync("./output.js", output);

0 comments on commit 418fd52

Please sign in to comment.