Skip to content

Commit

Permalink
Run npm run format (#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic authored Mar 3, 2023
1 parent 4db94a8 commit 391eeec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/catalog-api/src/lib/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export const PackageStatus = {
...ReadablePackageStatus,
...UnreadablePackageStatus,
} as const;
export type PackageStatus = typeof PackageStatus[keyof typeof PackageStatus];
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];

export const VersionStatus = {
...ReadableVersionStatus,
...UnreadableVersionStatus,
} as const;
export type VersionStatus = typeof VersionStatus[keyof typeof VersionStatus];
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];

export const isReadablePackage = (
p: PackageInfo | undefined
Expand Down
2 changes: 1 addition & 1 deletion packages/custom-elements-manifest-tools/src/lib/npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface PackageFiles {
*
* The response must be compatible with the npm registry Package Metadata
* API: https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md
*
*
* If a package is not found, the returned Promise must reject with an
* HttpError with status 404.
*/
Expand Down

0 comments on commit 391eeec

Please sign in to comment.