Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptodev-2s committed Nov 22, 2023
1 parent eb6dda1 commit 7740deb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'path';
import { format } from 'util';
import { parseChangelog, updateChangelog } from '@metamask/auto-changelog';
import { WriteStreamLike, readFile, writeFile, writeJsonFile } from './fs';
import { debug, isErrorWithCode } from './misc-utils';
import { isErrorWithCode } from './misc-utils';
import {
readPackageManifest,
UnvalidatedPackageManifest,
Expand Down
1 change: 0 additions & 1 deletion src/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
import { getRepositoryHttpsUrl, getTagNames, restoreFiles } from './repo';
import { SemVer } from './semver';
import { PackageManifestFieldNames } from './package-manifest';
import { debug } from './misc-utils';
import { ReleaseSpecification } from './release-specification';

/**
Expand Down
4 changes: 2 additions & 2 deletions src/release-plan.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { WriteStream } from 'fs';
import { SemVer } from 'semver';
import { debug } from './misc-utils';
import { Package, updatePackage, updatePackageChangelog } from './package';
import { Package, updatePackage } from './package';
import { Project } from './project';
import { ReleaseSpecification } from './release-specification';
import { WriteStream } from 'fs';

/**
* Instructions for how to update the project in order to prepare it for a new
Expand Down

0 comments on commit 7740deb

Please sign in to comment.