From 395d7c6befd06f628599ab71de074e7e72dca89a Mon Sep 17 00:00:00 2001 From: "T.J. Hawkins" Date: Sat, 27 Apr 2019 12:46:45 -0400 Subject: [PATCH 1/2] Updating auth0 lock library to current (11.15.0) --- lab-2/website/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab-2/website/index.html b/lab-2/website/index.html index 3da17c7..bd84a40 100755 --- a/lab-2/website/index.html +++ b/lab-2/website/index.html @@ -76,7 +76,7 @@

All videos. All the time.

- + From 93ae6e19121d75c0c0e39be6871c6f5ce638e4ac Mon Sep 17 00:00:00 2001 From: "T.J. Hawkins" Date: Sat, 27 Apr 2019 12:48:29 -0400 Subject: [PATCH 2/2] Updated local-web-server to current version 2.6.1, changed variable name to not have hyphons anymore, changed ws startup to use variable --- lab-2/website/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lab-2/website/package.json b/lab-2/website/package.json index 37d3f56..729bd1f 100755 --- a/lab-2/website/package.json +++ b/lab-2/website/package.json @@ -2,17 +2,17 @@ "name": "24-hour-video", "version": "1.0.0", "description": "The 24 Hour Video Website", - "local-web-server": { - "port": 8100, - "forbid": "*.json" + "lws": { + "port": 8100, + "forbid": "*.json" }, "scripts": { - "start": "ws", + "start": "ws -p $npm_package_lws_port", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Peter Sbarski", "license": "BSD-2-Clause", "devDependencies": { - "local-web-server": "^1.1.0" + "local-web-server": "^2.6.1" } }