From c4d47fe09c596922e7278d0935807def82f8abc1 Mon Sep 17 00:00:00 2001 From: jesusbotella Date: Wed, 24 Oct 2018 11:55:11 +0200 Subject: [PATCH] Change .babelrc not to target IE lower than 11. Remove useless node_modules from .eslintignore. --- .eslintignore | 1 - lib/assets/javascripts/new-dashboard/.babelrc | 2 +- lib/assets/test/spec/new-dashboard/.babelrc | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index 91a002d5df..392ac04821 100644 --- a/.eslintignore +++ b/.eslintignore @@ -27,4 +27,3 @@ /spec /vendor /coverage -/node_modules/ diff --git a/lib/assets/javascripts/new-dashboard/.babelrc b/lib/assets/javascripts/new-dashboard/.babelrc index 9390d164e9..8b898b9768 100644 --- a/lib/assets/javascripts/new-dashboard/.babelrc +++ b/lib/assets/javascripts/new-dashboard/.babelrc @@ -3,7 +3,7 @@ ["env", { "modules": false, "targets": { - "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] + "browsers": ["> 1%", "last 2 versions", "not ie < 11"] } }], "stage-2" diff --git a/lib/assets/test/spec/new-dashboard/.babelrc b/lib/assets/test/spec/new-dashboard/.babelrc index 9390d164e9..8b898b9768 100644 --- a/lib/assets/test/spec/new-dashboard/.babelrc +++ b/lib/assets/test/spec/new-dashboard/.babelrc @@ -3,7 +3,7 @@ ["env", { "modules": false, "targets": { - "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] + "browsers": ["> 1%", "last 2 versions", "not ie < 11"] } }], "stage-2"