Fix the abi-gen entry point

This commit is contained in:
Leonid Logvinov 2018-07-20 16:29:47 +02:00
parent 0a3ba4d27d
commit 6e15d7bb0f
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
3 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,13 @@
[
{
"version": "1.0.1",
"changes": [
{
"note": "Fix the abi-gen entry point in package.json",
"pr": 901
}
]
},
{
"version": "1.0.0",
"changes": [

View File

@ -1,2 +1,2 @@
#!/usr/bin/env node
require('../lib/src/index.js')
require('../lib/src/index.js');

View File

@ -5,8 +5,8 @@
"node": ">=6.12"
},
"description": "Generate contract wrappers from ABI and handlebars templates",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"watch_without_deps": "tsc -w",
"lint": "tslint --project .",