-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency @changesets/cli to v2.27.8 (#8546)
- Loading branch information
Showing
6 changed files
with
180 additions
and
987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ mkdocs-material = "*" | |
[dev-packages] | ||
|
||
[requires] | ||
python_version = "^3.8" | ||
python_version = "3.8" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
"devDependencies": { | ||
"@babel/plugin-transform-modules-commonjs": "7.24.8", | ||
"@changesets/changelog-github": "0.4.7", | ||
"@changesets/cli": "2.25.0", | ||
"@changesets/cli": "2.27.8", | ||
"@stylistic/eslint-plugin": "^2.8.0", | ||
"@types/node": "^22.5.5", | ||
"@typescript-eslint/eslint-plugin": "^8.6.0", | ||
|
@@ -73,7 +73,7 @@ | |
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@changesets/cli@2.25.0": "patches/@changesets__cli@2.25.0.patch" | ||
"@changesets/cli@2.27.8": "patches/@changesets__cli@2.27.8.patch" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/dist/changesets-cli.cjs.js b/dist/changesets-cli.cjs.js | ||
index e0310aa6f311fa88592fd0bdf5c1c892a10dccc2..0f6f3167c4e93bcb74d79758a40504ece41a02e2 100644 | ||
--- a/dist/changesets-cli.cjs.js | ||
+++ b/dist/changesets-cli.cjs.js | ||
@@ -995,8 +995,8 @@ async function getUnpublishedPackages(packages, preState) { | ||
} | ||
|
||
async function getUntaggedPackages(packages, cwd, tool) { | ||
- const packageWithTags = await Promise.all(packages.map(async pkg => { | ||
- const tagName = tool === "root" ? `v${pkg.packageJson.version}` : `${pkg.packageJson.name}@${pkg.packageJson.version}`; | ||
+ const packageWithTags = await Promise.all(packages.filter(pkg => ["electron-builder", "electron-updater"].includes(pkg.packageJson.name)).map(async pkg => { | ||
+ const tagName = (tool === "root" && pkg.packageJson.name === 'electron-builder') ? `v${pkg.packageJson.version}` : `${pkg.packageJson.name}@${pkg.packageJson.version}`; | ||
const isMissingTag = !((await git__namespace.tagExists(tagName, cwd)) || (await git__namespace.remoteTagExists(tagName))); | ||
return { | ||
pkg, | ||
diff --git a/dist/changesets-cli.esm.js b/dist/changesets-cli.esm.js | ||
index be26e5d6f0b46bc0a48476af1ecbbf58c54aea85..929b5c031d53e4a996c9c3f83beef00bbdf3f7cd 100644 | ||
--- a/dist/changesets-cli.esm.js | ||
+++ b/dist/changesets-cli.esm.js | ||
@@ -956,8 +956,8 @@ async function getUnpublishedPackages(packages, preState) { | ||
} | ||
|
||
async function getUntaggedPackages(packages, cwd, tool) { | ||
- const packageWithTags = await Promise.all(packages.map(async pkg => { | ||
- const tagName = tool === "root" ? `v${pkg.packageJson.version}` : `${pkg.packageJson.name}@${pkg.packageJson.version}`; | ||
+ const packageWithTags = await Promise.all(packages.filter(pkg => ["electron-builder", "electron-updater"].includes(pkg.packageJson.name)).map(async pkg => { | ||
+ const tagName = (tool === "root" && pkg.packageJson.name === 'electron-builder') ? `v${pkg.packageJson.version}` : `${pkg.packageJson.name}@${pkg.packageJson.version}`; | ||
const isMissingTag = !((await git.tagExists(tagName, cwd)) || (await git.remoteTagExists(tagName))); | ||
return { | ||
pkg, |
Oops, something went wrong.