mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
style: autoformat with biome to fix 195 formatting errors
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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.-]+)?)$/;
|
||||
|
||||
|
||||
@@ -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" },
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user