Skip to content

Commit 39a4a6d

Browse files
committed
chore(CRC-184): Move private dependency to optional
1 parent d00b430 commit 39a4a6d

File tree

3 files changed

+310
-81
lines changed

3 files changed

+310
-81
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:22-alpine AS installer
22
RUN corepack enable && corepack prepare [email protected] --activate
33
WORKDIR /usr/src/app
44
COPY package.json pnpm-lock.yaml ./
5-
RUN pnpm install --frozen-lockfile -P
5+
RUN pnpm install --frozen-lockfile --no-optional
66
COPY . .
77

88
FROM installer AS builder

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
"@eslint/json": "0.6.0",
6767
"@eslint/markdown": "6.2.1",
6868
"@github/local-action": "2.2.0",
69-
"@tid-xcut/markdown-confluence-sync": "1.1.0",
7069
"@types/jest": "29.5.14",
7170
"@types/node": "22.9.0",
7271
"@typescript-eslint/eslint-plugin": "8.14.0",
@@ -90,6 +89,9 @@
9089
"ts-jest": "29.2.5",
9190
"typescript": "5.6.3"
9291
},
92+
"optionalDependencies": {
93+
"@tid-xcut/markdown-confluence-sync": "1.1.0"
94+
},
9395
"files": [
9496
"dist",
9597
"bin"

0 commit comments

Comments
 (0)