Fix/tweak Node LTS support

This commit is contained in:
Dustin Brett 2023-01-20 09:02:33 -08:00
parent ac2711e512
commit 3a59152369
4 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,7 @@
.git .git
.husky
.next .next
.swc
.vscode
node_modules node_modules
out out

View File

@ -1,5 +1,7 @@
FROM node:lts-alpine FROM node:lts-alpine
ENV NODE_OPTIONS=--openssl-legacy-provider
RUN apk add --no-cache git RUN apk add --no-cache git
WORKDIR daedalOS WORKDIR daedalOS

View File

@ -22,7 +22,7 @@ cd daedalOS
### Yarn ### Yarn
- [Node.js](https://nodejs.org/en/download/) (**v16 LTS**) - [Node.js](https://nodejs.org/en/download/) (**LTS**)
- [Yarn](https://classic.yarnpkg.com/en/) (`npm install --global yarn`) - [Yarn](https://classic.yarnpkg.com/en/) (`npm install --global yarn`)
``` ```

View File

@ -39,6 +39,9 @@
"*.{ts,tsx}": "stylelint --fix", "*.{ts,tsx}": "stylelint --fix",
"*.{js,ts,tsx}": "eslint --fix" "*.{js,ts,tsx}": "eslint --fix"
}, },
"engines": {
"node": ">=16 <=18"
},
"resolutions": { "resolutions": {
"styled-components": "^5" "styled-components": "^5"
}, },