Skip to content

Commit

Permalink
fix(chore): technical release dependencies upgrade
Browse files Browse the repository at this point in the history
upgrade dependencies
  • Loading branch information
syroegkin committed Nov 11, 2023
1 parent 7f83c53 commit 230e6b6
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 29 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
- attach_workspace:
at: ~/app
- run: npm run test:lint

test_types:
<<: *node_defaults
steps:
- attach_workspace:
at: ~/app
- run: npm run typecheck

test_markdown:
<<: *node_defaults
Expand Down Expand Up @@ -79,6 +86,9 @@ workflows:
- test_markdown:
requires:
- build
- test_types:
requires:
- build
- deploy:
context:
- semantic-release
Expand All @@ -88,6 +98,7 @@ workflows:
- master
- beta
requires:
- test_types
- test_unit
- test_lint
- test_markdown
57 changes: 29 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"semantic-release": "semantic-release",
"make:examples": "ts-node ./scripts/make-examples.ts",
"clean": "rm -rf ./dist",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"bin": {
Expand Down Expand Up @@ -63,40 +64,40 @@
"markdown"
],
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/argparse": "^2.0.10",
"@types/chai": "^4.3.1",
"@types/jest": "^27.5.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.3.6",
"commitizen": "^4.2.6",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/argparse": "^2.0.13",
"@types/chai": "^4.3.10",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "^4.3.10",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.2.1",
"markdownlint-cli": "^0.31.1",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.9.4"
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"markdownlint-cli": "^0.37.0",
"semantic-release": "^21.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"argparse": "2.0.1",
"markdownlint": "^0.26.2",
"markdownlint-rule-helpers": "^0.17.2",
"openapi-types": "^11.0.1"
"markdownlint": "^0.31.1",
"markdownlint-rule-helpers": "^0.22.0",
"openapi-types": "^12.1.3"
}
}
2 changes: 1 addition & 1 deletion src/transformers/v2/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { transformSchemes } from './schemes';
export function transformPath(
path: string,
data: OpenAPIV2.PathItemObject,
parameters?: OpenAPIV2.ParametersDefinitionsObject,
_parameters?: OpenAPIV2.ParametersDefinitionsObject,
): string | null {
let pathParameters: OpenAPIV2.Parameters = null;

Expand Down

0 comments on commit 230e6b6

Please sign in to comment.