Skip to content

Commit 0ea97a5

Browse files
ccharlyclaude
andcommitted
build: reorder workspace patterns for changelog CI compatibility
The changelog-check script in github-tools iterates workspace patterns in order and returns the first match. With "packages/*" listed first, files under packages/snaps/simple-keyring/ resolve to the phantom "packages/snaps" package (which has no package.json), causing the CI check to fail. Listing more specific patterns first ensures files under packages/snaps/ correctly resolve to their actual package, which is marked private and is therefore skipped by the changelog check. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 1057311 commit 0ea97a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"url": "https://github.com/MetaMask/accounts.git"
99
},
1010
"workspaces": [
11-
"packages/*",
11+
"packages/snaps/*/packages/*",
1212
"packages/snaps/*",
13-
"packages/snaps/*/packages/*"
13+
"packages/*"
1414
],
1515
"files": [],
1616
"scripts": {

0 commit comments

Comments
 (0)