Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/server-nestjs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RUN pnpm --filter @cpn-console/server-nestjs install --frozen-lockfile
RUN pnpm --filter @cpn-console/server-nestjs run build

# Export @cpn-console/server-nestjs to target build directory
RUN pnpm --filter @cpn-console/server-nestjs --prod deploy build
RUN pnpm --filter @cpn-console/server-nestjs --prod deploy --legacy build

# Prod stage -----------------------------------------------------------------------
FROM docker.io/node:26.7.0-bullseye-slim AS prod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ describe('gitlabService', () => {
const staleSecret = makeVaultSecret({
data: { MIRROR_USER: accessToken.name, MIRROR_TOKEN: accessToken.token },
metadata: {
created_time: faker.date.past({ years: 2 }).toISOString(),
created_time: faker.date.birthdate({ min: 1, max: 2, mode: 'age' }).toISOString(),
custom_metadata: null,
deletion_time: '',
destroyed: false,
Expand Down
2 changes: 1 addition & 1 deletion apps/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN pnpm run build
# Build @cpn-console/server
RUN pnpm --filter @cpn-console/server run build
# Export @cpn-console/server to target build directory
RUN pnpm --filter @cpn-console/server --prod deploy build
RUN pnpm --filter @cpn-console/server --prod deploy --legacy build


# Prod stage -----------------------------------------------------------------------
Expand Down
22 changes: 3 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ allowBuilds:
vue-demi: true
allowUnusedPatches: true
autoInstallPeers: true
injectWorkspacePackages: true
injectWorkspacePackages: false
# minimum number of minutes that must pass after a version is published before
# pnpm will install it. This applies to all dependencies, including transitive ones.
minimumReleaseAge: 1440 # 1 day
Expand Down