mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-29 20:49:54 +00:00
croner changed the filename we need to use in the latest version fix the alias table in vendor/vendor.js fixes #3624
15 lines
612 B
JavaScript
15 lines
612 B
JavaScript
const vendor = {
|
|
"moment.js": "node_modules/moment/min/moment-with-locales.js",
|
|
"moment-timezone.js": "node_modules/moment-timezone/builds/moment-timezone-with-data.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": "css/font-awesome.css",
|
|
"nunjucks.js": "node_modules/nunjucks/browser/nunjucks.min.js",
|
|
"suncalc.js": "node_modules/suncalc/suncalc.js",
|
|
"croner.js": "node_modules/croner/dist/croner.umd.js"
|
|
};
|
|
|
|
if (typeof module !== "undefined") {
|
|
module.exports = vendor;
|
|
}
|