mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-01 20:23:36 +00:00
Resolves merge conflicts: - apps/server/src/routes/terminal/common.ts: Keep randomBytes import, use @automaker/utils for createLogger - apps/ui/eslint.config.mjs: Use main's explicit globals list with XMLHttpRequest and MediaQueryListEvent additions - apps/ui/src/components/views/terminal-view.tsx: Keep our terminal improvements (killAllSessions, beforeunload, better error handling) - apps/ui/src/config/terminal-themes.ts: Keep our search highlight colors for all themes - apps/ui/src/store/app-store.ts: Keep our terminal settings persistence improvements (merge function) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
374 B
TypeScript
24 lines
374 B
TypeScript
/**
|
|
* Re-export secure file system utilities from @automaker/platform
|
|
* This file exists for backward compatibility with existing imports
|
|
*/
|
|
|
|
import { secureFs } from '@automaker/platform';
|
|
|
|
export const {
|
|
access,
|
|
readFile,
|
|
writeFile,
|
|
mkdir,
|
|
readdir,
|
|
stat,
|
|
rm,
|
|
unlink,
|
|
copyFile,
|
|
appendFile,
|
|
rename,
|
|
lstat,
|
|
joinPath,
|
|
resolvePath,
|
|
} = secureFs;
|