Skip to content

Commit 73c90c8

Browse files
committed
Try to fix typescript autocompile on postinstall
1 parent dd40d0d commit 73c90c8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
dist
33
data
4-
.vscode/launch.json
4+
.vscode/launch.json
5+
npm-debug.log

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "sync-github-forks-cli",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Keeps github forks up to date using node, the github api and git",
55
"main": "dist/application.js",
66
"bin": {
77
"sync-github-forks": "dist/cli.js"
88
},
99
"scripts": {
10-
"postinstall": "./node_modules/.bin/tsc -p .",
10+
"postinstall": "./node_modules/.bin/tsc -p ./",
1111
"start": "./node_modules/.bin/tsc && node dist/cli.js",
1212
"test": "npm run lint",
1313
"lint": "./node_modules/.bin/tslint -c ./tslint.json src/**"

0 commit comments

Comments
 (0)