refactor: Update import paths in settings-service and security tests

- Changed import statements in settings-service.ts to use @automaker/utils and @automaker/platform for better modularity.
- Updated import in security.test.ts to reflect the new path for security.js, enhancing consistency across the codebase.
This commit is contained in:
Kacper
2025-12-20 22:31:27 +01:00
parent 32e2315697
commit 9bc245bd40
2 changed files with 3 additions and 3 deletions

View File

@@ -9,14 +9,14 @@
import fs from "fs/promises";
import path from "path";
import { createLogger } from "../lib/logger.js";
import { createLogger } from "@automaker/utils";
import {
getGlobalSettingsPath,
getCredentialsPath,
getProjectSettingsPath,
ensureDataDir,
ensureAutomakerDir,
} from "../lib/automaker-paths.js";
} from "@automaker/platform";
import type {
GlobalSettings,
Credentials,