Skip to content

Commit

Permalink
fix: change branch size max length to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
LironEr committed Feb 6, 2024
1 parent 05dbcd0 commit 22c3188
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/bundlemon-markdown-output/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"dependencies": {
"bytes": "^3.1.0",
"bundlemon-utils": "^1.2.0"
"bundlemon-utils": "^1.2.1"
},
"devDependencies": {
"@types/bytes": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/bundlemon-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bundlemon-utils",
"version": "1.2.0",
"version": "1.2.1",
"description": "",
"keywords": [],
"author": "Liron Er",
Expand Down
4 changes: 2 additions & 2 deletions packages/bundlemon-utils/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface CommitRecordPayload {
groups: FileDetails[];
/**
* @minLength 1
* @maxLength 100
* @maxLength 200
*/
branch: string;
/**
Expand All @@ -50,7 +50,7 @@ export interface CommitRecordPayload {
commitSha: string;
/**
* @minLength 1
* @maxLength 100
* @maxLength 200
*/
baseBranch?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/bundlemon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"axios": "^1.1.3",
"axios-retry": "^3.3.1",
"brotli-size": "^4.0.0",
"bundlemon-utils": "^1.2.0",
"bundlemon-utils": "^1.2.1",
"bytes": "^3.1.2",
"chalk": "^4.0.0",
"commander": "^9.4.0",
Expand Down
2 changes: 1 addition & 1 deletion service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@octokit/auth-app": "^6.0.0",
"@octokit/rest": "^20.0.1",
"bundlemon-markdown-output": "^1.0.0",
"bundlemon-utils": "^1.2.0",
"bundlemon-utils": "^1.2.1",
"bytes": "^3.1.2",
"env-var": "^7.3.1",
"fastify": "^4.21.0",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@mui/icons-material": "^5.14.13",
"@mui/lab": "^5.0.0-alpha.148",
"@mui/material": "^5.14.13",
"bundlemon-utils": "^1.2.0",
"bundlemon-utils": "^1.2.1",
"material-react-table": "^1.15.0",
"mobx": "^6.10.2",
"mobx-react-lite": "^4.0.5",
Expand Down

0 comments on commit 22c3188

Please sign in to comment.