From 4a72515c402798668fedbfbd01341b713a5c2b0c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 11:33:17 +0200 Subject: [PATCH] chore(deps): update dependency prettier to v3.2.5 (#205) * chore(deps): update dependency prettier to v3.2.5 * chore: linting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: evan-boone --- package-lock.json | 8 ++++---- package.json | 2 +- src/cli/commands/github/sync.ts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index c2d5a048..a08d68be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -58,7 +58,7 @@ "eslint-plugin-prettier": "5.1.3", "husky": "8.0.3", "jest": "^29.6.1", - "prettier": "3.1.0", + "prettier": "3.2.5", "rollup": "2.79.1", "rollup-plugin-typescript2": "0.36.0", "semantic-release": "22.0.12", @@ -13423,9 +13423,9 @@ } }, "node_modules/prettier": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", - "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 627424f2..87508080 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "eslint-plugin-prettier": "5.1.3", "husky": "8.0.3", "jest": "^29.6.1", - "prettier": "3.1.0", + "prettier": "3.2.5", "rollup": "2.79.1", "rollup-plugin-typescript2": "0.36.0", "semantic-release": "22.0.12", diff --git a/src/cli/commands/github/sync.ts b/src/cli/commands/github/sync.ts index 22915a51..6fb9c2a7 100644 --- a/src/cli/commands/github/sync.ts +++ b/src/cli/commands/github/sync.ts @@ -236,8 +236,8 @@ async function getReposInOrg( .filter( (it) => cals.resourcesDefinition.tags === undefined || - (it.project.tags || []).some( - (tag) => cals.resourcesDefinition.tags?.includes(tag), + (it.project.tags || []).some((tag) => + cals.resourcesDefinition.tags?.includes(tag), ) || // Always include if already checked out to avoid stale state. fs.existsSync(path.join(rootdir, it.project.name, it.repo.name)),