tapio / live-server

A simple development http server with live reload capability.
http://tapiov.net/live-server/
4.41k stars 484 forks source link

Update minimum node version in package.json #310

Open jaredellison opened 5 years ago

jaredellison commented 5 years ago

Following pull request #307 and issue #305 I propose updating package.json to indicate the latest version of node where the test suite is able to run successfully.

The dependency opn is now called open and makes use of newer features including async/await and the spread operator. This prevents live-server from working with older node versions. I used the node version manager and the project's test suite to look for the earliest working version and it is 8.3.0.

jaredellison commented 5 years ago

After a colleague (thanks @qwaded13!) mentioned Travis CI's ability to test a matrix of builds, I realized the project's continuous integration configuration should probably also be updated to cover some specific recent versions Node.