From 7f883c6f3e086e729a97cea30359112281101d3c Mon Sep 17 00:00:00 2001 From: zepumph Date: Thu, 24 Oct 2019 15:10:46 -0800 Subject: [PATCH] error out if using node less than 8.10, https://github.com/phetsims/chipper/issues/737 --- js/grunt/lint.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/grunt/lint.js b/js/grunt/lint.js index efdf66be..409fc604 100644 --- a/js/grunt/lint.js +++ b/js/grunt/lint.js @@ -17,8 +17,8 @@ const path = require( 'path' ); const child_process = require( 'child_process' ); // constants -// don't lint these repos -const NO_LINT_REPOS = [ +const NO_LINT_REPOS = [ // don't lint these repos + 'babel', 'eliot', 'phet-android-app',