Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 5eaa1aa

Browse files
committed
Merge pull request #83 from Microsoft/browserifyFix
Fix the 'tsc' command in our Browserify sample
2 parents 38e3896 + fd6b207 commit 5eaa1aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

browserify/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"http-server": "0.8.0"
1111
},
1212
"devDependencies": {
13-
"typescript": "^1.5.3"
13+
"typescript": "^1.8.9"
1414
},
1515
"scripts": {
16-
"tsc": "node node_modules/typescript/bin/tsc.js",
16+
"tsc": "node node_modules/typescript/lib/tsc.js",
1717
"browserify": "browserify src/app.js -o bundle.js -s app",
1818
"listen": "node node_modules/http-server/bin/http-server",
1919
"all": "npm run tsc && npm run browserify && npm run listen"
2020
}
21-
}
21+
}

0 commit comments

Comments
 (0)