Skip to content

Commit

Permalink
refactor: rename file to get-package-manifest.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
velut committed Apr 12, 2024
1 parent 6a78757 commit 03d19c5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/get-abbreviated-packument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { z } from "zod";
import { assertValidPackageName } from "./assert-valid-package-name";
import { DistTags } from "./dist-tags";
import { fetchData } from "./fetch-data";
import { PackageManifest } from "./get-package-manifest";
import { npmRegistryUrl } from "./npm-registry";
import { PackageManifest } from "./package-manifest";

export const AbbreviatedPackument = z.object({
/** Package name. */
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TODO:

export { PackageJson } from "zod-package-json";
export { AbbreviatedPackument, getAbbreviatedPackument } from "./get-abbreviated-packument";
export { PackageManifest } from "./get-package-manifest";
export { RegistryMetadata, getRegistryMetadata } from "./get-registry-metadata";
export { RegistrySigningKeys, getRegistrySigningKeys } from "./get-registry-signing-keys";
export { npmRegistryDownloadsApiUrl, npmRegistryUrl } from "./npm-registry";
export { PackageManifest } from "./package-manifest";

0 comments on commit 03d19c5

Please sign in to comment.