Merge pull request #249 from netpoetica/refactor/specify-node-engine-version

Refactor/specify node engine version
This commit is contained in:
Sigilante 2022-12-13 18:07:57 -06:00 committed by GitHub
commit 4a99ee8951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1520 additions and 1 deletions

View File

@ -2,7 +2,28 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
## Getting Started
First, run the development server:
First, ensure you have a compatible version of node and npm to avoid issues:
```bash
node --version
# v14.17.6
npm --version
# 9.1.3
# or
yarn --version
# 1.22.19
```
Next, install dependencies:
```bash
npm i
# or
yarn install
```
Finally, run the development server:
```bash
npm run dev

3
package-lock.json generated
View File

@ -43,6 +43,9 @@
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"tailwindcss": "^3.0.24"
},
"engines": {
"node": ">=14.17.6"
}
},
"node_modules/@babel/runtime": {

View File

@ -2,6 +2,9 @@
"name": "developers.urbit.org",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.17.6"
},
"scripts": {
"dev": "npm run prebuild && next dev",
"prebuild": "npm run cache-posts && npm run glossary && npm run guide && npm run overview && npm run reference",

1492
yarn.lock Normal file

File diff suppressed because it is too large Load Diff