Skip to content
Merged
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions packages/cli/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ function loadRcFile(): RcData {
if (existsSync(filepath)) {
try {
const raw = readFileSync(filepath, "utf-8");
console.warn(
"WARNING: Loading keys from .plotlinkrc — ensure this file is in .gitignore and never committed.",
);
return JSON.parse(raw) as RcData;
} catch {
// Ignore malformed rc files
Expand Down
Loading