I am implementing a small system with laravel and to give solution to the multiple selection of dates I decided to use jquery multidatespicker ( link ), my problem is that when running the command npm run dev sends me the following error
his dependency was not found:
- jquery-ui-dist in ./node_modules/jquery-ui-multidatespicker/jquery-ui.multidatespicker.js
This dependency is called within the query-ui.multidatespicker.js file with the following function
(function(factory) {
if (typeof define === "function" && define.amd) {
define(["jquery", "jquery-ui-dist"], factory);
} else {
factory(jQuery);
}
I've been surfing for a few hours and I have not found documentation to that problem.