mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
> - What does the pull request accomplish? Use a list if needed. this change allows uses to configure date/time events for compliments.. also linked site that will build the cron entry.. and example was Happy hour in a pub, on fri/sat between 5 and 7 pm. or just after midnight on Halloween (Boooooo!) I also added testcases for #3478 (and added support for this in MMM-Config), with a custom, drop down selection list of the types.. ) | if this is approved I will update the module doc
15 lines
616 B
JavaScript
15 lines
616 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.min.js"
|
|
};
|
|
|
|
if (typeof module !== "undefined") {
|
|
module.exports = vendor;
|
|
}
|