Fixed the electron build.

- Switched from `grpc` to `@grpc/grpc-js`.
 - Use electron `4.x` due to `@grpc/grpc-js`.
 - Enabled the build on Azure Pipelines.
 - From now on, the TS/JS generation is manual.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2019-05-06 22:00:44 +02:00
committed by Christian Weichel
parent ba995e6869
commit 6f584bf5d6
12 changed files with 143 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
import { inject, injectable } from 'inversify';
import * as grpc from 'grpc';
import * as grpc from '@grpc/grpc-js';
import { ArduinoCoreClient } from './cli-protocol/commands_grpc_pb';
import { InitResp, InitReq, Configuration, UpdateIndexReq, UpdateIndexResp } from './cli-protocol/commands_pb';
import { WorkspaceServiceExt } from '../browser/workspace-service-ext';