mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
Fix/tweak Node LTS support
This commit is contained in:
parent
ac2711e512
commit
3a59152369
|
|
@ -1,4 +1,7 @@
|
|||
.git
|
||||
.husky
|
||||
.next
|
||||
.swc
|
||||
.vscode
|
||||
node_modules
|
||||
out
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
FROM node:lts-alpine
|
||||
|
||||
ENV NODE_OPTIONS=--openssl-legacy-provider
|
||||
|
||||
RUN apk add --no-cache git
|
||||
|
||||
WORKDIR daedalOS
|
||||
|
|
|
|||
|
|
@ -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`)
|
||||
|
||||
```
|
||||
|
|
|
|||
|
|
@ -39,6 +39,9 @@
|
|||
"*.{ts,tsx}": "stylelint --fix",
|
||||
"*.{js,ts,tsx}": "eslint --fix"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16 <=18"
|
||||
},
|
||||
"resolutions": {
|
||||
"styled-components": "^5"
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user