nitropack-nightly 2.12.3-20250717-181903.086d21d8 → 2.12.3-20250717-181931.7a83e130
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/meta/index.mjs
CHANGED
|
@@ -282,5 +282,5 @@ async function generateWorkerName(nitro) {
|
|
|
282
282
|
);
|
|
283
283
|
const pkgName = pkgJSON?.name;
|
|
284
284
|
const subpath = relative(nitro.options.workspaceDir, nitro.options.rootDir);
|
|
285
|
-
return `${gitRepo || pkgName}/${subpath}`.replace(/[^a-zA-Z0-9-]/g, "-").replace(/-$/, "");
|
|
285
|
+
return `${gitRepo || pkgName}/${subpath}`.toLowerCase().replace(/[^a-zA-Z0-9-]/g, "-").replace(/-$/, "");
|
|
286
286
|
}
|
package/package.json
CHANGED