Compare commits

...

2 Commits

Author SHA1 Message Date
alexlebens e91ffd8686 feat: release 2.25.0
test-build / guarddog (push) Successful in 28s
renovate / renovate (push) Successful in 42s
release-image-harbor / build (push) Successful in 1m29s
test-build / build (push) Successful in 5m35s
release-image-harbor / release (push) Successful in 6m9s
release-image-gitea / build (push) Successful in 3m15s
release-image-gitea / release (push) Successful in 6m17s
2026-03-08 21:45:08 -05:00
alexlebens 00a86b1206 feat: remove unused files 2026-03-08 21:41:53 -05:00
4 changed files with 2 additions and 23 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ WORKDIR /app
COPY --from=prod-deps /app/node_modules /app/node_modules
COPY --from=build /app/dist /app/dist
LABEL version="2.24.0"
LABEL version="2.25.0"
LABEL description="Astro based personal website"
ENV HOST=0.0.0.0
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "site-profile",
"type": "module",
"version": "2.24.0",
"version": "2.25.0",
"homepage": "https://www.alexlebens.dev",
"bugs": {
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 381 KiB

-21
View File
@@ -1,21 +0,0 @@
import { join } from 'node:path';
function resolveFilePath(path: string) {
if (path.startsWith('/')) {
return resolveFilePathPublic(path);
}
return resolveFilePathInternal(path);
}
function resolveFilePathPublic(path: string) {
return join(process.cwd(), path);
}
function resolveFilePathInternal(path: string) {
const normalizePath = path.startsWith('@') ? path.replace('@', '') : path;
return join(process.cwd(), 'src/', normalizePath);
}
export { resolveFilePath, resolveFilePathPublic, resolveFilePathInternal };