mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-30 13:09:34 +00:00
see #3358 used command: `find ./ -type f -exec perl -i -0pe 's/\/\*\s*magicmirror.*?\*\/\s*//si' {} \;` This is a first draft, I think we should preserve some of the comments.
14 lines
556 B
JavaScript
14 lines
556 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"
|
|
};
|
|
|
|
if (typeof module !== "undefined") {
|
|
module.exports = vendor;
|
|
}
|