Skip to content

Commit 186844a

Browse files
Fix building
Add minimatch to package.json. Implement correctly ICommandsServiceProvider. Update common lib.
1 parent e758fcd commit 186844a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

lib/common

lib/providers/commands-service-provider.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import Future = require("fibers/future");
44

55
export class CommandsServiceProvider implements ICommandsServiceProvider {
6+
public dynamicCommandsPrefix = "";
7+
68
public getDynamicCommands(): IFuture<string[]> {
79
return Future.fromResult([]);
810
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"log4js": "0.6.22",
4343
"marked": "0.3.3",
4444
"marked-terminal": "1.4.0",
45+
"minimatch": "2.0.4",
4546
"mkdirp": "0.3.5",
4647
"mute-stream": "0.0.4",
4748
"node-inspector": "0.7.4",

0 commit comments

Comments
 (0)