style: autoformat with biome to fix 195 formatting errors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mohamed Boudra
2026-04-10 19:49:33 +00:00
parent be88ddbce1
commit 13de7d197b
195 changed files with 4419 additions and 3943 deletions

View File

@@ -55,7 +55,7 @@ for (const [key, val] of Object.entries(lock.packages || {})) {
execSync(`npm view ${pkgName}@${version} --json dist`, {
encoding: "utf8",
stdio: ["pipe", "pipe", "pipe"],
})
}),
);
if (info.tarball && info.integrity) {
val.resolved = info.tarball;

View File

@@ -1,4 +1,5 @@
const versionPattern = /^(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(?:-(?<prerelease>[0-9A-Za-z.-]+))?$/;
const versionPattern =
/^(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+)(?:-(?<prerelease>[0-9A-Za-z.-]+))?$/;
const sourceTagPattern =
/^(?:(?:desktop(?:-(?:windows|linux|macos))?|android)-)?v(?<version>\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?)$/;

View File

@@ -63,12 +63,6 @@ if (args.print) {
execFileSync(
"npm",
[
"version",
nextVersion,
"--include-workspace-root",
"--message",
"chore(release): cut %s",
],
["version", nextVersion, "--include-workspace-root", "--message", "chore(release): cut %s"],
{ cwd: rootDir, stdio: "inherit" },
);