Skip to content

Commit

Permalink
Updating all dependencies (#3457)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple authored Nov 17, 2023
1 parent fe2f601 commit 254f28e
Show file tree
Hide file tree
Showing 10 changed files with 672 additions and 257 deletions.
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"packages/cli/README.md",
"packages/requester-utils/README.md"
],
"imageSize": 50,
"imageSize": 25,
"commit": false,
"wrapperTemplate": "<p><%= bodyContent %></p>",
"commitConvention": "angular",
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ test:e2e:core:

test:e2e:rest:
extends: .test:e2e:base
image: mcr.microsoft.com/playwright:v1.39.0-focal
image: mcr.microsoft.com/playwright:v1.40.0-focal
before_script:
# reinstall swc due to missing binding for ubuntu image
- yarn add @swc/core
Expand Down
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"workspaces": [
"packages/*"
],
"resolutions": {
"all-contributors-cli": "6.26.1"
},
"scripts": {
"build": "nx run-many --target=build",
"clean": "npx rimraf --glob '**/{tmp,dist,node_modules,coverage,reports}'",
Expand All @@ -35,28 +38,28 @@
"@auto-it/omit-commits": "^11.0.4",
"@auto-it/omit-release-notes": "^11.0.4",
"@auto-it/released": "^11.0.4",
"@swc/core": "^1.3.93",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"auto": "^11.0.4",
"eslint": "^8.52.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lerna": "^7.4.1",
"lint-staged": "^15.0.2",
"lerna": "^7.4.2",
"lint-staged": "^15.1.0",
"nx": "17.1.2",
"prettier": "^3.0.3",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"xcase": "^2.0.1"
},
"devDependencies": {
"tsup": "^7.2.0",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
}
}
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
"xcase": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@types/node": "^20.9.1",
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"tsup": "^7.3.0",
"tsx": "^4.1.2",
"typescript": "^5.2.2"
}
}
4 changes: 2 additions & 2 deletions packages/core/src/infrastructure/RequestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export interface BasePaginationRequestOptions<P extends PaginationTypes | void>
export type PaginationRequestSubOptions<P extends PaginationTypes | void> = P extends 'keyset'
? AllOrNone<KeysetPaginationRequestOptions>
: P extends 'offset'
? OffsetPaginationRequestOptions
: AllOrNone<KeysetPaginationRequestOptions> & OffsetPaginationRequestOptions;
? OffsetPaginationRequestOptions
: AllOrNone<KeysetPaginationRequestOptions> & OffsetPaginationRequestOptions;

export type PaginationRequestOptions<P extends PaginationTypes | void = void> =
BasePaginationRequestOptions<P> & PaginationRequestSubOptions<P>;
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/infrastructure/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export type CamelizeString<T extends PropertyKey> = T extends string
? string extends T
? string
: T extends `${infer F}_${infer R}`
? `${F}${Capitalize<CamelizeString<R>>}`
: T
? `${F}${Capitalize<CamelizeString<R>>}`
: T
: T;

export type Camelize<T> = { [K in keyof T as CamelizeString<K>]: Camelize<T[K]> };
Expand Down
4 changes: 2 additions & 2 deletions packages/requester-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"xcase": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.8.7",
"tsup": "^7.2.0",
"@types/node": "^20.9.1",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
}
}
6 changes: 3 additions & 3 deletions packages/rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
"@gitbeaker/requester-utils": "^39.23.0"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.7",
"tsup": "^7.2.0",
"@playwright/test": "^1.40.0",
"@types/node": "^20.9.1",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 254f28e

Please sign in to comment.