Skip to content

Commit 2e2258e

Browse files
Merge pull request #52 from scality/dependabot/npm_and_yarn/prettier-3.6.2
2 parents e652f8a + ba07e4f commit 2e2258e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"eslint-plugin-import": "^2.32.0",
3333
"eslint-plugin-jest": "27",
3434
"jest": "^29.7.0",
35-
"prettier": "^2.8.7",
35+
"prettier": "^3.6.2",
3636
"ts-jest": "^29.4.1",
3737
"typescript": "^5.9.2"
3838
},

src/base.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ export class BaseAPI {
6868
* @extends {Error}
6969
*/
7070
export class RequiredError extends Error {
71-
constructor(public field: string, msg?: string) {
71+
constructor(
72+
public field: string,
73+
msg?: string,
74+
) {
7275
super(msg);
7376
this.name = 'RequiredError';
7477
}

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5179,10 +5179,10 @@ prelude-ls@^1.2.1:
51795179
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
51805180
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
51815181

5182-
prettier@^2.8.7:
5183-
version "2.8.7"
5184-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450"
5185-
integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==
5182+
prettier@^3.6.2:
5183+
version "3.6.2"
5184+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
5185+
integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
51865186

51875187
pretty-format@^29.0.0, pretty-format@^29.5.0:
51885188
version "29.5.0"

0 commit comments

Comments
 (0)