Skip to content

Commit

Permalink
Minor dependency changes
Browse files Browse the repository at this point in the history
Also updating husky workflow due to custom manager: https://typicode.github.io/husky/how-to.html#node-version-managers-and-guis
  • Loading branch information
jdalrymple committed Jul 8, 2024
1 parent 4cb1fbd commit 080b640
Show file tree
Hide file tree
Showing 12 changed files with 1,326 additions and 1,137 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ test:types:rest:

test:integration:rest:
extends: .test:integration:base
image: mcr.microsoft.com/playwright:v1.41.1-focal
image: mcr.microsoft.com/playwright:v1.45.1-focal
before_script:
# reinstall swc due to missing binding for ubuntu image
- yarn add @swc/core
Expand All @@ -330,7 +330,7 @@ test:integration:core:

test:e2e:rest:
extends: .test:e2e:base
image: mcr.microsoft.com/playwright:v1.41.1-focal
image: mcr.microsoft.com/playwright:v1.45.1-focal
allow_failure: true
before_script:
# reinstall swc due to missing binding for ubuntu image
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
npx --no-install lint-staged
yarn dlx --no-install lint-staged
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,35 +37,35 @@
"types": "^0.1.1"
},
"devDependencies": {
"@auto-it/all-contributors": "^11.0.4",
"@auto-it/core": "^11.0.4",
"@auto-it/first-time-contributor": "^11.0.4",
"@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.101",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"auto": "^11.0.4",
"eslint": "^8.56.0",
"@auto-it/all-contributors": "^11.1.6",
"@auto-it/core": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@auto-it/omit-commits": "^11.1.6",
"@auto-it/omit-release-notes": "^11.1.6",
"@auto-it/released": "^11.1.6",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"auto": "^11.1.6",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^9.0.6",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-extended": "^2.4.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"lerna": "^8.1.6",
"lint-staged": "^15.2.7",
"nx": "17.3.1",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]"
}
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"xcase": "^2.0.1"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}
6 changes: 3 additions & 3 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"module": "esnext",
"paths": {
"@gitbeaker/core/map.json": ["../core/dist/map.json"],
"@gitbeaker/*": ["../*/src"],
},
"@gitbeaker/*": ["../*/src"]
}
},
"include": ["./**/*.ts"],
"include": ["./**/*.ts"]
}
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@
},
"dependencies": {
"@gitbeaker/requester-utils": "^40.0.3",
"qs": "^6.11.2",
"qs": "^6.12.2",
"xcase": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/node": "^20.14.10",
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}
6 changes: 3 additions & 3 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"paths": {
"@gitbeaker/*": ["../*/src"],
},
"@gitbeaker/*": ["../*/src"]
}
},
"include": ["./**/*.ts"],
"include": ["./**/*.ts"]
}
10 changes: 5 additions & 5 deletions packages/requester-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
},
"dependencies": {
"picomatch-browser": "^2.2.6",
"qs": "^6.11.2",
"rate-limiter-flexible": "^4.0.0",
"qs": "^6.12.2",
"rate-limiter-flexible": "^4.0.1",
"xcase": "^2.0.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"@types/node": "^20.14.10",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}
6 changes: 3 additions & 3 deletions packages/requester-utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"paths": {
"@gitbeaker/*": ["../*/src"],
},
"@gitbeaker/*": ["../*/src"]
}
},
"include": ["./**/*.ts"],
"include": ["./**/*.ts"]
}
8 changes: 4 additions & 4 deletions packages/rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
"@gitbeaker/requester-utils": "^40.0.3"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}
6 changes: 3 additions & 3 deletions packages/rest/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"paths": {
"@gitbeaker/*": ["../*/src"],
},
"@gitbeaker/*": ["../*/src"]
}
},
"include": ["./**/*.ts"],
"include": ["./**/*.ts"]
}
Loading

0 comments on commit 080b640

Please sign in to comment.