diff --git a/.eslintignore b/.eslintignore index 2e1f92d3..ee60c2ea 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,6 +1,6 @@ -vendor/ +vendor/* !/vendor/vendor.js !/modules/default/** !/modules/node_helper !/modules/node_helper/** -!/modules/default/defaultmodules.js \ No newline at end of file +!/modules/default/defaultmodules.js diff --git a/Gruntfile.js b/Gruntfile.js index 73836ba4..06fed2d5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,7 +10,7 @@ module.exports = function(grunt) { "serveronly/*.js", "*.js", "tests/*/*.js", "!modules/default/alert/notificationFx.js", "!modules/default/alert/modernizr.custom.js", "!modules/default/alert/classie.js", "config/*", - "translations/translations.js" + "translations/translations.js", "vendor/vendor.js" ] }, diff --git a/vendor/vendor.js b/vendor/vendor.js index 32eab950..7076cc45 100644 --- a/vendor/vendor.js +++ b/vendor/vendor.js @@ -8,9 +8,9 @@ */ var vendor = { - 'moment.js' : 'node_modules/moment/min/moment-with-locales.js', - 'moment-timezone.js' : 'node_modules/moment-timezone/moment-timezone.js', - 'weather-icons.css': 'node_modules/weathericons/css/weather-icons.css', - 'weather-icons-wind.css': 'node_modules/weathericons/css/weather-icons-wind.css', - 'font-awesome.css': 'node_modules/font-awesome/css/font-awesome.min.css' + "moment.js" : "node_modules/moment/min/moment-with-locales.js", + "moment-timezone.js" : "node_modules/moment-timezone/moment-timezone.js", + "weather-icons.css": "node_modules/weathericons/css/weather-icons.css", + "weather-icons-wind.css": "node_modules/weathericons/css/weather-icons-wind.css", + "font-awesome.css": "node_modules/font-awesome/css/font-awesome.min.css" };