Update package index on 3rd party URLs change.

Closes #637
Closes #906

Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
This commit is contained in:
Akos Kitta
2022-06-29 11:14:56 +02:00
committed by Akos Kitta
parent 1073c3fc7d
commit a36524e02a
43 changed files with 1052 additions and 704 deletions

View File

@@ -7,11 +7,11 @@ import {
import {
OutputMessage,
ProgressMessage,
ResponseServiceArduino,
ResponseServiceClient,
} from '../common/protocol/response-service';
@injectable()
export class ResponseServiceImpl implements ResponseServiceArduino {
export class ResponseServiceImpl implements ResponseServiceClient {
@inject(OutputChannelManager)
private readonly outputChannelManager: OutputChannelManager;
@@ -19,7 +19,7 @@ export class ResponseServiceImpl implements ResponseServiceArduino {
readonly onProgressDidChange = this.progressDidChangeEmitter.event;
clearArduinoChannel(): void {
clearOutput(): void {
this.outputChannelManager.getChannel('Arduino').clear();
}