Skip to content

Commit

Permalink
chore(deps-dev): bump @biomejs/biome from 1.4.1 to 1.5.3 (#598)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump @biomejs/biome from 1.4.1 to 1.5.3

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.4.1 to 1.5.3.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.5.3/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: update linting suggestion

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: patzick <[email protected]>
  • Loading branch information
dependabot[bot] and patzick authored Feb 13, 2024
1 parent d05cb25 commit 0f3b176
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"generateDependencyChangelog": "esno ./scripts/generateDependencyChangelog.ts"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@biomejs/biome": "1.5.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@microsoft/api-documenter": "^7.23.23",
Expand Down
1 change: 1 addition & 0 deletions packages/helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"build:types": "tsc ./src/*.ts --declaration --allowJs --emitDeclarationOnly --outDir ./temp --skipLibCheck",
"dev": "unbuild --stub",
"lint": "biome lint . && pnpm run typecheck",
"lint:fix": "biome lint --apply . && pnpm run typecheck",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
Expand Down
2 changes: 1 addition & 1 deletion packages/helpers/src/urlIsAbsolute.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function urlIsAbsolute(url: string) {
return new RegExp("^(?:[a-z+]+:)?//", "i").test(url);
return /^(?:[a-z+]+:)?\/\//i.test(url);
}
68 changes: 44 additions & 24 deletions pnpm-lock.yaml

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

0 comments on commit 0f3b176

Please sign in to comment.