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
|
.git
|
||||||
|
.husky
|
||||||
.next
|
.next
|
||||||
|
.swc
|
||||||
|
.vscode
|
||||||
node_modules
|
node_modules
|
||||||
out
|
out
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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`)
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user