because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(CVG-29): extract post-build template copy to shell script

+10 -3
+2 -2
.gitignore
··· 92 92 docker-compose.override.yml* 93 93 docker-compose.nvidia.yml 94 94 95 - # Local scripts 96 - scripts/ 95 + # Local scripts (root only, not app-level) 96 + /scripts/ 97 97 98 98 # Docker manifest staging (generated by .docker/copy-manifests.sh) 99 99 .docker/.manifests/
+7
apps/server/scripts/post-build.sh
··· 1 + #!/usr/bin/env bash 2 + set -euo pipefail 3 + 4 + DIST_DIR="dist" 5 + 6 + mkdir -p "${DIST_DIR}/templates" 7 + cp src/modules/cv-template/seed/templates/* "${DIST_DIR}/templates/"
+1 -1
apps/server/tsup.config.ts
··· 10 10 sourcemap: true, 11 11 clean: true, 12 12 tsconfig: "tsconfig.build.json", 13 - onSuccess: "cp -r src/modules/cv-template/seed/templates dist/templates", 13 + onSuccess: "sh scripts/post-build.sh", 14 14 15 15 noExternal: [/^@cv\//], 16 16