Skip to content

Commit

Permalink
Release 0.8.0 (#556)
Browse files Browse the repository at this point in the history
* Upgrade client packages to latest minor

* Upgrade to node 22

* Bump version to 0.8.0

* Update github actions node version
  • Loading branch information
Tim020 authored Jul 16, 2024
1 parent b380431 commit cd610e2
Show file tree
Hide file tree
Showing 5 changed files with 507 additions and 473 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install -g npm@8
node-version: 22
- run: npm install -g npm@10
- run: npm ci
- run: npm run ci-lint
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM node:18.13.0-buster AS node_build
RUN npm install npm@8 -g
FROM node:22-bookworm AS node_build
RUN npm install npm@10 -g

COPY /client /client
WORKDIR /client
RUN npm ci
COPY /server /server
RUN npm run build

FROM python:3.10-buster
FROM python:3.10-bookworm

COPY /server/requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A digital script project for cueing theatrical shows

### Requirements

* Node v18.13.x (npm 8.11.x)
* Node v22.x (npm 10.x)
* Python 3.10.x

### Client
Expand Down
Loading

0 comments on commit cd610e2

Please sign in to comment.