From 95d64b3de5f598881226fe0539d8eb237b242193 Mon Sep 17 00:00:00 2001 From: eg-oss-ci Date: Tue, 6 Aug 2024 11:24:20 +0000 Subject: [PATCH] chore(release): 1.11.1 [skip ci] ## [1.11.1](https://github.com/ExpediaGroup/spec-transformer/compare/v1.11.0...v1.11.1) (2024-08-06) ### Bug Fixes * **deps:** downgrade semantic release github plugin ([#291](https://github.com/ExpediaGroup/spec-transformer/issues/291)) ([9acc3ec](https://github.com/ExpediaGroup/spec-transformer/commit/9acc3eccb60bf185699e79a3d543fe00a53cce04)) --- dist/.releaserc.json | 80 ++++++++++++++++++++++++++++++++++++ dist/CHANGELOG.md | 5 +++ dist/package.json | 96 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 181 insertions(+) create mode 100644 dist/.releaserc.json create mode 100644 dist/CHANGELOG.md create mode 100644 dist/package.json diff --git a/dist/.releaserc.json b/dist/.releaserc.json new file mode 100644 index 0000000..ca2b530 --- /dev/null +++ b/dist/.releaserc.json @@ -0,0 +1,80 @@ +{ + "branches": [ + "main" + ], + "plugins": [ + [ + "@semantic-release/commit-analyzer", + { + "preset": "conventionalcommits", + "releaseRules": [ + { + "type": "feat", + "section": "Features", + "release": "minor" + }, + { + "type": "fix", + "section": "Bug Fixes", + "release": "patch" + }, + { + "type": "no-release", + "release": false + } + ], + "parserOpts": { + "noteKeywords": [ + "BREAKING CHANGE", + "BREAKING CHANGES", + "BREAKING-CHANGE", + "BREAKING" + ] + } + } + ], + [ + "@semantic-release/release-notes-generator", + { + "preset": "conventionalcommits", + "parserOpts": { + "noteKeywords": [ + "BREAKING CHANGE", + "BREAKING CHANGES", + "BREAKING" + ] + }, + "writerOpts": { + "commitsSort": [ + "subject", + "scope" + ] + } + } + ], + [ + "@semantic-release/changelog", + { + "changelogFile": "CHANGELOG.md" + } + ], + "@semantic-release/npm", + "@semantic-release/github", + [ + "@semantic-release/exec", + { + "successCmd": "sh ../scripts/update-assets.sh" + } + ], + [ + "@semantic-release/git", + { + "assets": [ + "package.json", + "CHANGELOG.md", + ".releaserc.json" + ] + } + ] + ] +} diff --git a/dist/CHANGELOG.md b/dist/CHANGELOG.md new file mode 100644 index 0000000..0d22251 --- /dev/null +++ b/dist/CHANGELOG.md @@ -0,0 +1,5 @@ +## [1.11.1](https://github.com/ExpediaGroup/spec-transformer/compare/v1.11.0...v1.11.1) (2024-08-06) + +### Bug Fixes + +* **deps:** downgrade semantic release github plugin ([#291](https://github.com/ExpediaGroup/spec-transformer/issues/291)) ([9acc3ec](https://github.com/ExpediaGroup/spec-transformer/commit/9acc3eccb60bf185699e79a3d543fe00a53cce04)) diff --git a/dist/package.json b/dist/package.json new file mode 100644 index 0000000..f9f41f5 --- /dev/null +++ b/dist/package.json @@ -0,0 +1,96 @@ +{ + "name": "@expediagroup/spec-transformer", + "version": "1.11.1", + "description": "API Spec Transformer", + "repository": { + "type": "git", + "url": "https://github.com/ExpediaGroup/spec-transformer.git" + }, + "main": "index.js", + "types": "index.d.ts", + "bin": { + "lib": "index.js", + "cli": "cli.js" + }, + "scripts": { + "add-headers": "scripts/add-headers.sh", + "build": "rm -rf dist && npx tsc --pretty && rm -rf dist/test && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp CONTRIBUTING.md dist/CONTRIBUTING.md && cp .releaserc.json dist/.releaserc.json", + "start": "ts-node index.ts", + "test": "jest", + "semantic-release": "semantic-release" + }, + "keywords": [ + "openapi", + "api", + "specifications", + "transformer", + "specs", + "mapping" + ], + "author": "Expedia Group ", + "contributors": [ + "'Mohammad Noor' AbuKhleif (https://github.com/mohnoor94)", + "Osama Salman (https://github.com/osama-salman99)" + ], + "publishConfig": { + "access": "public" + }, + "license": "Apache-2.0", + "dependencies": { + "commander": "12.1.0", + "js-yaml": "4.1.0", + "openapi-to-postmanv2": "4.22.0", + "openapi3-ts": "4.3.3" + }, + "devDependencies": { + "@semantic-release/changelog": "6.0.3", + "@semantic-release/commit-analyzer": "13.0.0", + "@semantic-release/exec": "6.0.3", + "@semantic-release/git": "10.0.1", + "@semantic-release/github": "10.1.3", + "@semantic-release/npm": "12.0.1", + "@semantic-release/release-notes-generator": "14.0.1", + "@types/jest": "29.5.12", + "@types/js-yaml": "4.0.9", + "@types/node": "20.14.13", + "@types/openapi-to-postmanv2": "3.2.4", + "conventional-changelog-conventionalcommits": "8.0.0", + "jest": "29.7.0", + "prettier": "3.3.3", + "semantic-release": "24.0.0", + "ts-jest": "29.2.3", + "ts-node": "10.9.2", + "typescript": "5.5.4" + }, + "prettier": { + "singleQuote": true, + "printWidth": 120 + }, + "jest": { + "preset": "ts-jest", + "testEnvironment": "node", + "collectCoverage": true, + "coverageReporters": [ + "json", + "text", + "lcov", + "clover", + "json-summary" + ], + "testMatch": [ + "**/test/**/*.test.ts" + ], + "coverageThreshold": { + "global": { + "statements": 90, + "branches": 90, + "functions": 90, + "lines": 90 + } + } + }, + "bugs": { + "url": "https://github.com/ExpediaGroup/spec-transformer/issues" + }, + "homepage": "https://github.com/ExpediaGroup/spec-transformer#readme" +}