mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 08:53:36 +00:00
This commit updates various modules to utilize the secure file system operations from the secureFs module instead of the native fs module. Key changes include: - Replaced fs imports with secureFs in multiple route handlers and services to enhance security and consistency in file operations. - Added centralized validation for working directories in the sdk-options module to ensure all AI model invocations are secure. These changes aim to improve the security and maintainability of file handling across the application.
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
/**
|
|
* Bundles all individual theme styles so the build pipeline
|
|
* doesn't tree-shake their CSS when imported dynamically.
|
|
*/
|
|
|
|
// Dark themes (16)
|
|
import './themes/dark.css';
|
|
import './themes/retro.css';
|
|
import './themes/dracula.css';
|
|
import './themes/nord.css';
|
|
import './themes/monokai.css';
|
|
import './themes/tokyonight.css';
|
|
import './themes/solarized.css';
|
|
import './themes/gruvbox.css';
|
|
import './themes/catppuccin.css';
|
|
import './themes/onedark.css';
|
|
import './themes/synthwave.css';
|
|
import './themes/red.css';
|
|
import './themes/sunset.css';
|
|
import './themes/gray.css';
|
|
import './themes/forest.css';
|
|
import './themes/ocean.css';
|
|
|
|
// Light themes (16)
|
|
import './themes/light.css';
|
|
import './themes/cream.css';
|
|
import './themes/solarizedlight.css';
|
|
import './themes/github.css';
|
|
import './themes/paper.css';
|
|
import './themes/rose.css';
|
|
import './themes/mint.css';
|
|
import './themes/lavender.css';
|
|
import './themes/sand.css';
|
|
import './themes/sky.css';
|
|
import './themes/peach.css';
|
|
import './themes/snow.css';
|
|
import './themes/sepia.css';
|
|
import './themes/gruvboxlight.css';
|
|
import './themes/nordlight.css';
|
|
import './themes/blossom.css';
|