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
.husky
.next
.swc
.vscode
node_modules
out

View File

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

View File

@ -22,7 +22,7 @@ cd daedalOS
### 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`)
```

View File

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