Skip to content

Commit

Permalink
feat: Export PipfileLock schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Aug 4, 2024
1 parent fec42d1 commit ab33abe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/manager/pipenv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const PipenvConstraintObject = z
.nullable()
.catch(null);

const PipfileLock = Json.pipe(
export const PipfileLock = Json.pipe(
z.object({
_meta: PythonConstraintObject,
default: PipenvConstraintObject,
Expand All @@ -75,6 +75,7 @@ const PipfileLock = Json.pipe(
pipenvDefault: null,
pipenvDevelop: null,
});
export type PipfileLock = z.infer<typeof PipfileLock>;

const PipenvConstraint = z
.object({
Expand Down

0 comments on commit ab33abe

Please sign in to comment.