'browser open' console command

This commit is contained in:
Michael Bradley, Jr 2018-09-04 07:35:02 -05:00
parent 68c6d1549a
commit 57b2c5c4e4
1 changed files with 4 additions and 0 deletions

View File

@ -95,6 +95,10 @@ class WebServer {
}; };
}); });
self.embark.registerConsoleCommand((cmd, _options) => {
return {
match: () => cmd === 'browser open',
process: (cb) => self.events.request('open-browser', cb)
}; };
}); });
} }