From 1eefa10280ee3297b54c9d8ee44e4dfc61e23d15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 May 2021 10:37:40 +0200 Subject: [PATCH] build(deps): bump prettier from 2.2.1 to 2.3.0 (#124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * build(deps): bump prettier from 2.2.1 to 2.3.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.0) Signed-off-by: dependabot[bot] * build: set exact version of Prettier in lockfile The reason: From https://prettier.io/blog/2021/05/09/2.3.0.html > And just a reminder, when Prettier is installed or updated, it’s > strongly recommended to specify the exact version in package.json: > "2.3.0", not "^2.3.0". From https://prettier.io/docs/en/install.html#summary > Install an exact version of Prettier locally in your project. This > makes sure that everyone in the project gets the exact same version of > Prettier. Even a patch release of Prettier can result in slightly > different formatting, so you wouldn’t want different team members > using different versions and formatting each other’s changes back and > forth. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: MrChocolatine <47531779+MrChocolatine@users.noreply.github.com> --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d38a565..97d4e74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3189,9 +3189,9 @@ "dev": true }, "prettier": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", - "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.0.tgz", + "integrity": "sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==" }, "prettier-eslint": { "version": "9.0.2", diff --git a/package.json b/package.json index c85353e..d7c6482 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "marked": "^2.0.3", "mdextract": "^1.0.0", "minimist": "^1.2.0", - "prettier": "^2.2.1", + "prettier": "2.3.0", "pug": "^3.0.2", "read-input": "^0.3.0" },