Skip to content

Commit 391eeec

Browse files
authored
Run npm run format (#1447)
1 parent 4db94a8 commit 391eeec

File tree

2 files changed

+3
-3
lines changed
  • packages

2 files changed

+3
-3
lines changed

packages/catalog-api/src/lib/schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ export const PackageStatus = {
2020
...ReadablePackageStatus,
2121
...UnreadablePackageStatus,
2222
} as const;
23-
export type PackageStatus = typeof PackageStatus[keyof typeof PackageStatus];
23+
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
2424

2525
export const VersionStatus = {
2626
...ReadableVersionStatus,
2727
...UnreadableVersionStatus,
2828
} as const;
29-
export type VersionStatus = typeof VersionStatus[keyof typeof VersionStatus];
29+
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
3030

3131
export const isReadablePackage = (
3232
p: PackageInfo | undefined

packages/custom-elements-manifest-tools/src/lib/npm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface PackageFiles {
1515
*
1616
* The response must be compatible with the npm registry Package Metadata
1717
* API: https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md
18-
*
18+
*
1919
* If a package is not found, the returned Promise must reject with an
2020
* HttpError with status 404.
2121
*/

0 commit comments

Comments
 (0)