Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Dec 18, 2023
1 parent 9139a9f commit d049d9f
Show file tree
Hide file tree
Showing 15 changed files with 410 additions and 408 deletions.
14 changes: 7 additions & 7 deletions Source/api.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { publish as _publish, IPublishOptions } from "./publish";
import {
packageCommand,
listFiles as _listFiles,
IPackageOptions,
listFiles as _listFiles,
packageCommand,
} from "./package";
import { IPublishOptions, publish as _publish } from "./publish";

/**
* @deprecated prefer IPackageOptions instead
Expand Down Expand Up @@ -32,9 +32,9 @@ export type ICreateVSIXOptions = Pick<IPackageOptions, "cwd" | "packagePath"> &
* @public
*/
export enum PackageManager {
Npm,
Yarn,
None,
Npm = 0,
Yarn = 1,
None = 2,
}

/**
Expand Down Expand Up @@ -112,7 +112,7 @@ export type IPublishVSIXOptions = IPublishOptions &
*/
export function publishVSIX(
packagePath: string | string[],
options: IPublishVSIXOptions = {}
options: IPublishVSIXOptions = {},
): Promise<any> {
return _publish({
packagePath:
Expand Down
Loading

0 comments on commit d049d9f

Please sign in to comment.