multidatespicker jquery jquery-ui-dist

1

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.

    
asked by Juan Luis Guzman Sepulveda 20.11.2018 в 01:27
source

0 answers