Skip to content

Commit

Permalink
fix: Revert PipfileLock schema export (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov authored Aug 4, 2024
1 parent 1d3c317 commit aacb7c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renovatebot/detect-tools",
"version": "1.0.2",
"version": "1.0.3",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.js",
Expand Down
3 changes: 1 addition & 2 deletions 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);

export const PipfileLock = Json.pipe(
const PipfileLock = Json.pipe(
z.object({
_meta: PythonConstraintObject,
default: PipenvConstraintObject,
Expand All @@ -75,7 +75,6 @@ export 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 aacb7c7

Please sign in to comment.