## Summary - Upgrade Effect and effect-lens from beta to RC versions. - Replace `@effect/language-service` with `@effect/tsgo`. - Update TypeScript, VS Code, and package configuration for tsgo. - Adapt `MutationForm`, `PubSub`, and fiber interruption code to RC APIs. - Bump `effect-view` to `0.1.3` and update its published file set. - Update documentation and examples from Effect v4 beta to RC. ## Testing - `bun run lint:tsc` - `bun run test` — 59 tests passed --------- Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: #72
13 lines
485 B
Docker
13 lines
485 B
Docker
FROM oven/bun:1.3.12-debian@sha256:1b709c9dd883fc1af38c210f7ea5222c552a8d470ea73efbd4b8fcfee798a64b AS bun
|
|
|
|
FROM node:22.21.1-trixie-slim@sha256:98e1429d1a0b99378b4de43fa385f0746fd6276faf4feeb6104d91f6bad290f9
|
|
COPY --from=bun /usr/local/bin/bun /usr/local/bin/bunx /usr/local/bin/
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
RUN bun install --frozen-lockfile && \
|
|
bun run build && \
|
|
bun clean:cache && \
|
|
bun clean:modules && \
|
|
bun install --production --frozen-lockfile --ignore-scripts
|