@rubytech/taskmaster 1.0.3 → 1.0.4
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/build-info.json
CHANGED
|
@@ -214,7 +214,7 @@ export async function fetchNpmTagVersion(params) {
|
|
|
214
214
|
const timeoutMs = params?.timeoutMs ?? 3500;
|
|
215
215
|
const tag = params.tag;
|
|
216
216
|
try {
|
|
217
|
-
const res = await fetchWithTimeout(`https://registry.npmjs.org
|
|
217
|
+
const res = await fetchWithTimeout(`https://registry.npmjs.org/@rubytech%2Ftaskmaster/${encodeURIComponent(tag)}`, timeoutMs);
|
|
218
218
|
if (!res.ok) {
|
|
219
219
|
return { tag, version: null, error: `HTTP ${res.status}` };
|
|
220
220
|
}
|