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

Update dev scripts #126

Merged
merged 2 commits into from
Apr 1, 2024
Merged
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 .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.1
20.12.0
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12.2
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Currently, these are the combinations of system dependencies that work for MacOS
```bash
$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json
{
"node": "20.11.1",
"pnpm": "8.15.3",
"node": "20.12.0",
"pnpm": "8.15.5",
"python": "3.12.2"
}
```
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11.1-alpine as builder
FROM node:20.12.0-alpine as builder

WORKDIR /server-build

Expand All @@ -17,7 +17,7 @@ COPY . .
RUN pnpm build

# ---- RUNTIME IMAGE ----------------------------------------------------------
FROM node:20.11.1-alpine
FROM node:20.12.0-alpine

WORKDIR /app
LABEL maintainer="ferdium"
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"version": "2.0.6",
"description": "Ferdium server to replace the default Franz/Ferdi server.",
"engines": {
"node": "20.11.1",
"pnpm": "8.15.3",
"node": "20.12.0",
"pnpm": "8.15.5",
"python": "3.12.2"
},
"engine-strict": true,
"volta": {
"node": "20.11.1",
"pnpm": "8.15.3",
"node": "20.12.0",
"pnpm": "8.15.5",
"python": "3.12.2"
},
"packageManager": "pnpm@8.15.3",
"packageManager": "pnpm@8.15.5",
"homepage": "https://github.com/ferdium/ferdium-server",
"license": "MIT License",
"scripts": {
Expand Down Expand Up @@ -45,21 +45,21 @@
"@types/source-map-support": "0.5.10",
"@types/targz": "1.0.4",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.3.1",
"adonis-preset-ts": "2.1.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-adonis": "2.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "50.0.1",
"eslint-plugin-unicorn": "51.0.1",
"husky": "9.0.11",
"is-ci": "3.0.1",
"pino-pretty": "10.3.1",
"prettier": "3.2.5",
"typescript": "5.3.3",
"typescript": "5.4.3",
"youch": "3.3.3",
"youch-terminal": "2.2.3"
},
Expand Down
Loading
Loading