Skip to content

Commit 314119d

Browse files
committed
fix(examples/typescript): missing dependencies
- missing tsc meant the build command would not run - missing nyc and mocha would mean the tests would not run
1 parent 2ba8dbe commit 314119d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/typescript/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
"license": "MIT",
1212
"devDependencies": {
1313
"@types/mocha": "^2.2.41",
14-
"mocha": "3.x",
15-
"nyc": "^11.2.0"
14+
"mocha": "^3.5.3",
15+
"nyc": "^11.9.0"
1616
},
1717
"dependencies": {
18-
"axios": "^0.17.1"
18+
"axios": "^0.17.1",
19+
"typescript": "^3.0.3"
1920
}
2021
}

0 commit comments

Comments
 (0)