Skip to content

Commit

Permalink
chore: upgrade to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreiffers committed Oct 8, 2024
1 parent 14e71cf commit 89bef46
Show file tree
Hide file tree
Showing 6 changed files with 2,442 additions and 2,042 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as build
FROM node:20-alpine as build
# Installing libvips-dev for sharp Compatibility
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev > /dev/null 2>&1
ARG NODE_ENV=production
Expand All @@ -13,7 +13,7 @@ COPY ./ .
RUN yarn build


FROM node:18-alpine
FROM node:20-alpine
RUN apk add --no-cache vips-dev
COPY setup-msmtp.sh startup.sh /
RUN apk add msmtp
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM node:20
# Installing libvips-dev for sharp Compatability
RUN apt-get update && apt-get install libvips-dev -y
ARG NODE_ENV=development
Expand Down
6 changes: 1 addition & 5 deletions config/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,5 @@ export default ({ env }) => ({
defaultReplyTo: 'datalandsbyen@norge.no'
}
}
},
'import-export-entries': {
enabled: true,
config: {},
},
}
});
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3"
services:
strapi:
container_name: strapi
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.1",
"@koa/router": "^13.1.0",
"@lezer/common": "^1.2.2",
"codemirror": "^6.0.1",
"eslint": "^8.55.0",
Expand All @@ -35,24 +36,23 @@
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"koa": "^2.15.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.11"
"prettier": "^3.3.3"
},
"dependencies": {
"@strapi/icons": "^1.19.0",
"@strapi/plugin-graphql": "^4.25.12",
"@strapi/plugin-i18n": "^4.25.12",
"@strapi/plugin-users-permissions": "^4.25.12",
"@strapi/provider-email-nodemailer": "^4.25.12",
"@strapi/strapi": "^4.25.12",
"pg": "^8.13.0"
"@strapi/plugin-graphql": "^5.0.2",
"@strapi/plugin-users-permissions": "^5.0.2",
"@strapi/provider-email-nodemailer": "^5.0.2",
"@strapi/strapi": "^5.0.2",
"pg": "^8.13.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
}
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}
Loading

0 comments on commit 89bef46

Please sign in to comment.