Skip to content

Commit

Permalink
ignore package jsons in biome since changesets modifies it
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 7335f6b547bac36260f96ec397a7df1f2046c064
  • Loading branch information
f authored and actions-user committed Sep 19, 2024
1 parent f0b3418 commit a7b6665
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/packages.react-router-busy.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches:
- main
paths:
# This is fine for merging PR which is a push to main because changesets updates package's changelog and package.json to trigger this
- 'packages/react-router-busy/**'

# Don't run publish multiple times at once
Expand Down
6 changes: 4 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@
"formatter": {
"ignore": [
// Until we fix vite-plugin-icons-spritesheet
"./apps/git-sell/public/icons/*"
"./apps/git-sell/public/icons/*",
// Until biome handles nested gitignore files
// Actually not tracked in git so doesn't matter
// "./packages/react-router-busy/dist/*"
// "./packages/react-router-busy/dist/*",
// changesets changes package json formatting causing lint failure before publish
"**/package.json"
]
},
"vcs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-router-busy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ return (

### NavLink

TODO Better not to have all that extra code for the `as` prop.
TODO Better not to have all that extra code for the `as` prop

0 comments on commit a7b6665

Please sign in to comment.