Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Dec 18, 2023
1 parent 12bb83c commit b2858f4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/build/src/run-draft.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import {
promises as fs,
constants as fsConstants,
createWriteStream,
readFileSync,
} from 'fs';
import { promises as fs, constants as fsConstants } from 'fs';
import path from 'path';
import type { Config } from './config';
import { ALL_PACKAGE_VARIANTS, getReleaseVersionFromTag } from './config';
import { ALL_PACKAGE_VARIANTS } from './config';
import { uploadArtifactToDownloadCenter as uploadArtifactToDownloadCenterFn } from './download-center';
import { downloadArtifactFromEvergreen as downloadArtifactFromEvergreenFn } from './evergreen';
import { notarizeArtifact as notarizeArtifactFn } from './packaging';
Expand Down Expand Up @@ -62,6 +57,7 @@ export async function runDraft(
uploadToDownloadCenter: typeof uploadArtifactToDownloadCenterFn = uploadArtifactToDownloadCenterFn,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
downloadArtifactFromEvergreen: typeof downloadArtifactFromEvergreenFn = downloadArtifactFromEvergreenFn,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
ensureGithubReleaseExistsAndUpdateChangelog: typeof ensureGithubReleaseExistsAndUpdateChangelogFn = ensureGithubReleaseExistsAndUpdateChangelogFn,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
notarizeArtifact: typeof notarizeArtifactFn = notarizeArtifactFn
Expand Down

0 comments on commit b2858f4

Please sign in to comment.