@contextforge/core 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,7 +159,7 @@ declare const RemoteRegistryIndexSchema: z.ZodObject<{
|
|
|
159
159
|
type RemoteRegistryIndex = z.infer<typeof RemoteRegistryIndexSchema>;
|
|
160
160
|
|
|
161
161
|
declare const OFFICIAL_REGISTRY_SOURCE = "official";
|
|
162
|
-
declare const OFFICIAL_REGISTRY_URL = "https://registry.contextforge.
|
|
162
|
+
declare const OFFICIAL_REGISTRY_URL = "https://registry.contextforge.org/index.json";
|
|
163
163
|
declare const DEFAULT_REGISTRY_SOURCES: string[];
|
|
164
164
|
declare const PROJECT_PACK_CACHE = ".contextforge/packs";
|
|
165
165
|
type LoadRegistryOptions = {
|
package/dist/index.js
CHANGED
|
@@ -296,7 +296,7 @@ async function loadRemoteRegistry(registryUrl, timeoutMs = DEFAULT_TIMEOUT_MS) {
|
|
|
296
296
|
|
|
297
297
|
// src/registry/loadRegistry.ts
|
|
298
298
|
var OFFICIAL_REGISTRY_SOURCE = "official";
|
|
299
|
-
var OFFICIAL_REGISTRY_URL = "https://registry.contextforge.
|
|
299
|
+
var OFFICIAL_REGISTRY_URL = "https://registry.contextforge.org/index.json";
|
|
300
300
|
var DEFAULT_REGISTRY_SOURCES = [OFFICIAL_REGISTRY_SOURCE];
|
|
301
301
|
var PROJECT_PACK_CACHE = ".contextforge/packs";
|
|
302
302
|
function mergePacks(packs) {
|