Skip to content

Commit

Permalink
Bump prettier from 2.8.8 to 3.0.0 (#1566)
Browse files Browse the repository at this point in the history
* Bump prettier from 2.8.8 to 3.0.0

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.8.8...3.0.0)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* npm run format

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ICHINOSE Shogo <shogo82148@gmail.com>
  • Loading branch information
dependabot[bot] and shogo82148 authored Jul 17, 2023
1 parent 621fc63 commit c1897c1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@types/semver": "^7.5.0",
"@vercel/ncc": "^0.36.1",
"jest": "^29.6.1",
"prettier": "^2.8.8",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
Expand Down
2 changes: 1 addition & 1 deletion src/cpan-installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function install(opt: Options): Promise<void> {
const cpanfileKey = await hashFiles(
opt,
path.join(workingDirectory, "cpanfile"),
path.join(workingDirectory, "cpanfile.snapshot")
path.join(workingDirectory, "cpanfile.snapshot"),
);
const installKey = hashString(opt.install_modules || "");
const key = `${baseKey}-${cpanfileKey}-${installKey}`;
Expand Down
2 changes: 1 addition & 1 deletion src/setup-perl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function run() {
} else {
if (dist === "strawberry") {
core.warning(
"The strawberry distribution is not available on this platform. fallback to the default distribution."
"The strawberry distribution is not available on this platform. fallback to the default distribution.",
);
dist = "default";
}
Expand Down

0 comments on commit c1897c1

Please sign in to comment.