From f84223746d5308957ba45fff9876898928eced53 Mon Sep 17 00:00:00 2001 From: Ryan Louie Date: Thu, 18 Nov 2021 09:40:41 -0600 Subject: [PATCH] Add warnings about dependencies --- README.md | 2 ++ package.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 89b845f..bfac68b 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ For more detailed instructions, watch the [Cococo video demo](https://youtu.be/X #### Running the app +CoCoCo requires node version 12 (it has been tested successfully on v12.22.7 but not on v16), and the build process requires that you run on OSX or Windows (not Linux due to an issue with case-sensitive imports in Typescript). + ```bash yarn install yarn dev diff --git a/package.json b/package.json index d7f6580..dce925a 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,9 @@ "test-dev": "NODE_ENV=dev webpack --config=configs/webpack/dev.js", "deploy": "yarn build && node deploy.js" }, + "engines": { + "node": "~12.22.7" + }, "devDependencies": { "@babel/cli": "^7.4.4", "@babel/core": "^7.4.4",