Skip to content

Commit 018376c

Browse files
refactor: remove the eds-tokens-sync dependency from the docker files and build script
1 parent 97923f5 commit 018376c

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

DockerfileColorPaletteGenerator

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ COPY packages/eds-color-palette-generator/package.json ./packages/eds-color-pale
2121
COPY packages/eds-tailwind/package.json ./packages/eds-tailwind/
2222
COPY packages/eds-tokens/package.json ./packages/eds-tokens/
2323
COPY packages/eds-tokens-build/package.json ./packages/eds-tokens-build/
24-
COPY packages/eds-tokens-sync/package.json ./packages/eds-tokens-sync/
2524

2625
# Install dependencies with frozen lockfile and clean cache
2726
RUN pnpm install --frozen-lockfile && \

DockerfileEdsDemo

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ COPY package.json pnpm-lock.yaml pnpm-workspace.yaml babel.config.cjs tsconfig.b
2020
COPY packages/eds-demo/package.json ./packages/eds-demo/
2121
COPY packages/eds-tokens/package.json ./packages/eds-tokens/
2222
COPY packages/eds-tokens-build/package.json ./packages/eds-tokens-build/
23-
COPY packages/eds-tokens-sync/package.json ./packages/eds-tokens-sync/
2423

2524
# Install dependencies with frozen lockfile and clean cache
2625
RUN pnpm install --frozen-lockfile && \

DockerfileEdsDocs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ COPY . ./
1717
RUN pnpm install --frozen-lockfile
1818

1919
# Build all necessary dependencies and docs
20-
RUN pnpm run build:token-sync && \
21-
pnpm run build:tokens-build && \
20+
RUN pnpm run build:tokens-build && \
2221
pnpm run build:tokens && \
2322
pnpm run build:utils && \
2423
pnpm run build:icons && \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"build:tokens": "pnpm --filter @equinor/eds-tokens run build",
1919
"build:tokens-build": "pnpm --filter @equinor/eds-tokens-build run build",
2020
"build:token-sync": "pnpm --filter @equinor/eds-tokens-sync run build",
21-
"build:variables": "pnpm --filter @equinor/eds-tokens-sync run build && pnpm --filter @equinor/eds-tokens-build run build && pnpm --filter @equinor/eds-tokens run build:variables",
21+
"build:variables": "pnpm --filter @equinor/eds-tokens-build run build && pnpm --filter @equinor/eds-tokens run build:variables",
2222
"update:tokens": "pnpm --filter @equinor/eds-tokens-sync run build && pnpm --filter @equinor/eds-tokens run update-tokens",
2323
"update:figma": "pnpm --filter @equinor/eds-tokens-sync run build && pnpm --filter @equinor/eds-tokens run update-figma",
2424
"build:icons": "pnpm --filter @equinor/eds-icons run build",

0 commit comments

Comments
 (0)