isSelfHost

This commit is contained in:
Kyle Spearrin 2018-06-30 13:51:25 -04:00
parent 787dcc68a8
commit 11ede29f9a
2 changed files with 5 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit c0e7e588ed59832a6f579ff63d85bfcdfb400d78 Subproject commit 20622db73c5c2a56777944bb06f32a21bf2e763f

View File

@ -122,6 +122,10 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
return process.env.BWCLI_ENV === 'development'; return process.env.BWCLI_ENV === 'development';
} }
isSelfHost(): boolean {
return false;
}
copyToClipboard(text: string, options?: any): void { copyToClipboard(text: string, options?: any): void {
throw new Error('Not implemented.'); throw new Error('Not implemented.');
} }