We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9cd81 commit b8a58c6Copy full SHA for b8a58c6
lib/cli.ts
@@ -1,4 +1,9 @@
1
require("es6-promise").polyfill();
2
+try {
3
+ require("typescript");
4
+} catch (e) {
5
+ console.error("typescript is required. please try 'npm install -g typescript'\n");
6
+}
7
8
import * as fs from "fs";
9
import * as commandpost from "commandpost";
0 commit comments