diff --git a/extensions/bitbucket/CHANGELOG.md b/extensions/bitbucket/CHANGELOG.md index 76c6146f4d9d1..d3c69f0b198fa 100644 --- a/extensions/bitbucket/CHANGELOG.md +++ b/extensions/bitbucket/CHANGELOG.md @@ -1,5 +1,9 @@ # Bitbucket Changelog +## [Update] - 2024-12-02 + +- Added Prettier to the project as newly required by Raycast + ## [Update] - 2024-06-19 - Changed the show pipelines action's hotkey from "CMD + P" to "CMD + SHIFT + P" to avoid the conflict with the default system print shortcut. @@ -8,4 +12,4 @@ ## [Update] - 2023-01-03 -Changed the SearchList implementation to work with workspaces with large number of repositories \ No newline at end of file +- Changed the SearchList implementation to work with workspaces with large number of repositories diff --git a/extensions/bitbucket/package-lock.json b/extensions/bitbucket/package-lock.json index 085d087129a64..c5da92960a139 100644 --- a/extensions/bitbucket/package-lock.json +++ b/extensions/bitbucket/package-lock.json @@ -21,6 +21,7 @@ "@typescript-eslint/parser": "^5.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", + "prettier": "^3.4.1", "react-devtools": "^4.19.2", "typescript": "^4.4.3" } @@ -2756,6 +2757,22 @@ "node": ">=4" } }, + "node_modules/prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz", + "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -5923,6 +5940,12 @@ "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", "dev": true }, + "prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.1.tgz", + "integrity": "sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==", + "dev": true + }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", diff --git a/extensions/bitbucket/package.json b/extensions/bitbucket/package.json index 071b8f0677f9c..25bdb3a69967f 100644 --- a/extensions/bitbucket/package.json +++ b/extensions/bitbucket/package.json @@ -8,7 +8,7 @@ "contributors": [ "earmstrong42", "mhossain", - "morland_meng" + "kmizzi" ], "license": "MIT", "commands": [ @@ -68,6 +68,7 @@ "@typescript-eslint/parser": "^5.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", + "prettier": "^3.4.1", "react-devtools": "^4.19.2", "typescript": "^4.4.3" },