From 37b069c2975ff1228019b74d0c175c79c3796426 Mon Sep 17 00:00:00 2001 From: Ioannis Charalampidis Date: Sat, 16 Feb 2019 15:45:56 +0100 Subject: [PATCH] Building only on node 8+ It seems that the module `cssstyle` has a danlging comma in the file `cssstyle/lib/CSSStyleDeclaration.js` that is unparsable by node 7 or earlier. A quick solution is to lock builds on node v8 onwards --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d46d1cf..f88d365 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,5 @@ language: node_js node_js: - - "6" - - "7" - "8" - "9" - "10"