Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c66798c
fix(lint): remove void operators conflicting with SonarCloud S3735
arediss Feb 10, 2026
3431749
refactor(auth): split AuthenticationSection to reduce cognitive compl…
arediss Feb 10, 2026
e3241cd
refactor(app): reduce cognitive complexity and nesting in App.tsx
arediss Feb 10, 2026
baf9977
refactor(sftp): reduce complexity and nesting in SftpBrowser
arediss Feb 10, 2026
2fd9623
refactor(plugins): reduce cognitive complexity in PluginManager and s…
arediss Feb 10, 2026
5fc1c63
fix(lint): resolve miscellaneous MAJOR SonarCloud issues
arediss Feb 10, 2026
7aa9d51
fix(lint): replace nested ternaries with early returns (S3358)
arediss Feb 10, 2026
f4c2224
fix(a11y): add ARIA roles to interactive elements (S6848)
arediss Feb 10, 2026
eb21928
fix(lint): use Number.parseInt, String.replaceAll, node: imports (S77…
arediss Feb 10, 2026
dde3733
fix(lint): prefer globalThis over window (S7764)
arediss Feb 10, 2026
e48b4f3
fix(lint): consolidate imports, type aliases, remove deprecated tags …
arediss Feb 10, 2026
cef3aa2
fix(lint): mark component props as readonly, add keyboard handlers (S…
arediss Feb 10, 2026
a8dff15
fix(lint): flip negated conditions to positive form (S7735)
arediss Feb 10, 2026
6fbd43e
fix(a11y): replace ARIA roles with semantic HTML, fix remaining PR is…
arediss Feb 10, 2026
ffe3c8e
fix(a11y): move keyboard handlers off non-interactive dialog elements…
arediss Feb 10, 2026
d908cd6
fix(a11y): move Escape handler to document listener in PromptModal (S…
arediss Feb 10, 2026
5327153
fix(sidebar): revert session item to div with role=button to allow ne…
arediss Feb 10, 2026
3e6611f
fix(react): reset isMountedRef on StrictMode remount
arediss Feb 10, 2026
ae7baf4
fix(a11y): restructure session item to avoid nested buttons
arediss Feb 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions scripts/bump-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
* node scripts/bump-version.mjs 0.3.0-alpha # explicit version
*/

import { readFileSync, writeFileSync } from "fs";
import { resolve, dirname } from "path";
import { fileURLToPath } from "url";
import { readFileSync, writeFileSync } from "node:fs";
import { resolve, dirname } from "node:path";
import { fileURLToPath } from "node:url";

const __dirname = dirname(fileURLToPath(import.meta.url));
const ROOT = resolve(__dirname, "..");
Expand All @@ -39,9 +39,9 @@ function parseVersion(version) {
const match = version.match(/^(\d+)\.(\d+)\.(\d+)(?:-(.+))?$/);
if (!match) throw new Error(`Invalid version: ${version}`);
return {
major: parseInt(match[1]),
minor: parseInt(match[2]),
patch: parseInt(match[3]),
major: Number.parseInt(match[1]),
minor: Number.parseInt(match[2]),
patch: Number.parseInt(match[3]),
prerelease: match[4] || null,
};
}
Expand Down
Loading