Skip to content

Commit

Permalink
Change bower references to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Edofre committed Jun 13, 2017
1 parent b481048 commit 5e9bcfd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/FullcalendarServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ public function boot()
// publish all the required files to generate the calendar
$this->publishes([
// fullcalendar library
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.css' => public_path('css/fullcalendar.css'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.print.css' => public_path('css/fullcalendar.print.css'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.js' => public_path('js/fullcalendar.js'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/locale-all.js' => public_path('js/locale-all.js'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/gcal.js' => public_path('js/gcal.js'),
__DIR__ . '/../../../npm-asset/fullcalendar/dist/fullcalendar.css' => public_path('css/fullcalendar.css'),
__DIR__ . '/../../../npm-asset/fullcalendar/dist/fullcalendar.print.css' => public_path('css/fullcalendar.print.css'),
__DIR__ . '/../../../npm-asset/fullcalendar/dist/fullcalendar.js' => public_path('js/fullcalendar.js'),
__DIR__ . '/../../../npm-asset/fullcalendar/dist/locale-all.js' => public_path('js/locale-all.js'),
__DIR__ . '/../../../npm-asset/fullcalendar/dist/gcal.js' => public_path('js/gcal.js'),
// moment library
__DIR__ . '/../../../bower-asset/moment/moment.js' => public_path('js/moment.js'),
__DIR__ . '/../../../npm-asset/moment/moment.js' => public_path('js/moment.js'),
], 'fullcalendar');
}

Expand Down

0 comments on commit 5e9bcfd

Please sign in to comment.