deployment extension not working on Linux (#6476)

* add webpack for built in extensions

* fix the casing issue

* Rename azCLITool.ts to azCliTool.ts

* Rename kubectlTool.ts to kubeCtlTool.ts

* fix the error

* fix the packaging issue
This commit is contained in:
Alan Ren
2019-07-23 18:34:17 -07:00
committed by GitHub
parent 53ab31766c
commit a92b2e0691
12 changed files with 51 additions and 14 deletions

View File

@@ -7,7 +7,7 @@
import * as TypeMoq from 'typemoq';
import 'mocha';
import { NotebookService } from '../services/NotebookService';
import { NotebookService } from '../services/notebookService';
import assert = require('assert');
import { NotebookInfo } from '../interfaces';
import { IPlatformService } from '../services/platformService';

View File

@@ -20,7 +20,7 @@ suite('Tools Service Tests', function (): void {
{ name: 'azcli', type: ToolType.AzCli },
{ name: 'docker', type: ToolType.Docker },
{ name: 'kubectl', type: ToolType.KubeCtl },
{ name: 'mssqlctl', type: ToolType.MSSQLCtl }];
{ name: 'azdata', type: ToolType.Azdata }];
const missingTypes: string[] = [];