From c239e28119cc5d07ed6e10c61063dd717f3cf079 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 14 Apr 2026 17:17:26 +0530 Subject: [PATCH] chore: remove obsolete config.json references Deleted the `config.json` entry from the package file list and removed the corresponding `CONFIG_FILE` constant, cleaning up unused configuration references. --- package.json | 1 - src/constants.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/package.json b/package.json index 8ff256f..22415e1 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,6 @@ "storage/", "engine262/lib/", "graphology/", - "config.json", "AGENTS.md", "README.md" ], diff --git a/src/constants.ts b/src/constants.ts index 597dbd8..124407e 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -2,7 +2,6 @@ export const STORAGE_DIR = "./storage"; export const SPEC_DIR = "./spec-built/multipage"; export const CODE_DIR = "./engine262/src"; export const GRAPH_FILE = "./graphology/graph.json"; -export const CONFIG_FILE = "./config.json"; // Model configurations export const EMBEDDING_MODEL = "qwen3-embedding:0.6b";