From 39d0c62a2c516a6f8950e13a4b2d3f40056edf3b Mon Sep 17 00:00:00 2001 From: Jake Burden Date: Wed, 9 Jun 2021 11:34:45 -0400 Subject: [PATCH] docs: Add minimum node version v11 (#370) --- docs/src/getting-started/installation.md | 6 ++++++ ts/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/src/getting-started/installation.md b/docs/src/getting-started/installation.md index 0a43af40..9da0439e 100644 --- a/docs/src/getting-started/installation.md +++ b/docs/src/getting-started/installation.md @@ -51,3 +51,9 @@ npm install -g @project-serum/anchor Make sure your `NODE_PATH` is set properly so that globally installed modules can be resolved. + +## Minimum version requirements + +| Build tool | Version | +|:------------|:---------------| +| Node.js | v11.0.0 | \ No newline at end of file diff --git a/ts/package.json b/ts/package.json index eb554f2e..b756490e 100644 --- a/ts/package.json +++ b/ts/package.json @@ -10,7 +10,7 @@ "access": "public" }, "engines": { - "node": ">=10" + "node": ">=11" }, "scripts": { "build": "rm -rf dist/ && yarn build:node",