Skip to content

Commit 7175604

Browse files
committed
Fix scripts in package.json
1 parent dfda9ad commit 7175604

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "github-repo-tools",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Useful tool to get versions from all repos of Github user/org",
5-
"main": "build/src/app.js",
5+
"main": "build/app.js",
66
"bin": {
7-
"grt": "./build/src/app.js"
7+
"grt": "./build/app.js"
88
},
99
"scripts": {
1010
"clean": "rimraf ./build",
1111
"build": "tsc",
1212
"build:watch": "tsc -w",
1313
"start": "ts-node ./src/app.ts",
14-
"start:built": "node ./build/src/app.js",
14+
"start:built": "node ./build/app.js",
1515
"prepublish": "npm run clean && npm run build",
1616
"lint": "tslint -p .",
1717
"lint:fix": "tslint -p . --fix"

0 commit comments

Comments
 (0)