Add index.ts for packaging module

This commit is contained in:
Charis Kyriakou
2023-04-26 14:13:55 +00:00
parent 38af88805c
commit 80ac593bec
3 changed files with 3 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ import { CompareView } from "./compare/compare-view";
import { initializeTelemetry } from "./telemetry";
import { ProgressCallback, withProgress } from "./progress";
import { CodeQlStatusBarHandler } from "./status-bar";
import { getPackagingCommands } from "./packaging/packaging";
import { getPackagingCommands } from "./packaging";
import { HistoryItemLabelProvider } from "./query-history/history-item-label-provider";
import { EvalLogViewer } from "./query-evaluation-logging";
import { SummaryLanguageSupport } from "./log-insights/summary-language-support";

View File

@@ -0,0 +1 @@
export * from "./packaging";

View File

@@ -8,7 +8,7 @@ import * as helpers from "../../../../src/helpers";
import {
handleDownloadPacks,
handleInstallPackDependencies,
} from "../../../../src/packaging/packaging";
} from "../../../../src/packaging";
import { mockedQuickPickItem } from "../../utils/mocking.helpers";
import { getActivatedExtension } from "../../global.helper";