Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade a lot of things #1858

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
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 .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm install -g [email protected] prettier@3.1.0 typescript@5.3.2 @swc/core@1.3.100 @swc/cli@0.1.63 jest @biomejs/biome@1.4.1
- run: npm install -g [email protected] prettier@3.3.3 typescript@5.6.3 @swc/core@1.9.2 @swc/cli@0.5.0 jest @biomejs/biome@1.9.4
- run: |
cd ts
npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm install -g [email protected] prettier@3.1.0 typescript@5.3.2 @swc/core@1.3.100 @swc/cli@0.1.63
- run: npm install -g [email protected] prettier@3.3.3 typescript@5.6.3 @swc/core@1.9.2 @swc/cli@0.5.0
- run: |
cd ts
npm ci
npm install --save-dev @swc-node/register@1.6.8
npm install --save-dev @swc-node/register@1.10.9

- name: Setup ripgrep
run: curl -LO https://github.com/BurntSushi/ripgrep/releases/download/13.0.0/ripgrep_13.0.0_amd64.deb && sudo dpkg -i ripgrep_13.0.0_amd64.deb
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/advanced-topics/running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ python3 -m pip install auto_schema==0.0.26
* Install the following TypeScript packages globally:

```shell
npm install -g typescript@5.3.2 prettier@3.1.0 [email protected] @swc/core@1.3.100 @swc/cli@0.1.63 @biomejs/biome@1.4.1
npm install -g typescript@5.6.3 prettier@3.3.3 [email protected] @swc/core@1.9.2 @swc/cli@0.5.0 @biomejs/biome@1.9.4
```

* Install `tsconfig-paths` and `@swc-node/register` locally:

```shell
npm install --save-dev [email protected] @swc-node/register@1.6.8
npm install --save-dev [email protected] @swc-node/register@1.10.9
```

* Install `rg`
Expand Down
2 changes: 1 addition & 1 deletion examples/ent-rsvp/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/lolopinto/ent:v0.1.17-nodejs-18-dev
FROM ghcr.io/lolopinto/ent:v0.2.0-alpha.11-nodejs-22-slim

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion examples/ent-rsvp/backend/develop.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/lolopinto/ent:v0.1.17-nodejs-18-dev
FROM ghcr.io/lolopinto/ent:v0.2.0-alpha.12-test-nodejs-22-dev

WORKDIR /app

Expand Down
1 change: 1 addition & 0 deletions examples/ent-rsvp/backend/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ services:
- .:/app:rw,delegated
environment:
- DB_CONNECTION_STRING=postgres://ola:@host.docker.internal/ent-rsvp
- ENABLE_SWC=true
Loading
Loading