From fb27a2a6829dc82b9e853982478ef47be8341f91 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 17 Jul 2019 10:50:17 -0400 Subject: [PATCH] Pin the node runtime to 8.10.x (#85) It seems that `chrome-aws-lambda` only works with Node 8 --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index d100b5a..80d3de0 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "version": "1.0.0", "description": "Generate an open graph image for twitter/facebook/etc", "main": "dist/card.js", + "engines": { + "node": "8.10.x" + }, "scripts": { "build": "tsc", "now-build": "tsc",