From 142aa55a5d884e358c4bc5df6438f17618be102a Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Wed, 15 Nov 2023 13:12:05 -0700 Subject: [PATCH] Add .node-version file (#10820) This a small QOL change. Essentially if you have a tool like `fnm` on your machine for using multiple versions of Node.js, they will look for files like this one and automatically switch your terminal session node version to the value in it. The `vercel/front` repo uses this too --- .node_version | 1 + .nvmrc | 1 + 2 files changed, 2 insertions(+) create mode 100644 .node_version create mode 100644 .nvmrc diff --git a/.node_version b/.node_version new file mode 100644 index 000000000..2ab3d4be5 --- /dev/null +++ b/.node_version @@ -0,0 +1 @@ +v16.20.2 diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 000000000..cb406c60c --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +16.20.2