2017-02-15 16:13:32 -05:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-24 16:01:35 -04:00
|
|
|
/**
|
2017-02-15 16:13:32 -05:00
|
|
|
* Hummingbird Anime List Client
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
|
2015-06-24 16:01:35 -04:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* PHP version 7
|
2016-08-30 10:01:18 -04:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2017-02-15 16:13:32 -05:00
|
|
|
* @copyright 2015 - 2017 Timothy J. Warren
|
2016-08-30 10:01:18 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2017-02-15 16:13:32 -05:00
|
|
|
* @version 4.0
|
2016-08-30 10:01:18 -04:00
|
|
|
* @link https://github.com/timw4mail/HummingBirdAnimeClient
|
2015-06-24 16:01:35 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2016-02-03 14:57:00 -05:00
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| JS Folder
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The folder where javascript files exist, in relation to the document root
|
|
|
|
|
|
|
|
|
*/
|
2016-02-10 17:30:45 -05:00
|
|
|
'js_root' => 'js/',
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2017-04-06 11:45:25 -04:00
|
|
|
| JS Groups
|
2016-02-03 14:57:00 -05:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-04-06 11:45:25 -04:00
|
|
|
| Config array for javascript files to concatenate and minify
|
2016-02-03 14:57:00 -05:00
|
|
|
|
|
|
|
|
*/
|
2017-04-06 11:45:25 -04:00
|
|
|
'groups' => [
|
|
|
|
'base' => [
|
|
|
|
'base/classList.js',
|
|
|
|
'base/AnimeClient.js',
|
|
|
|
],
|
|
|
|
'event' => [
|
|
|
|
'base/events.js',
|
|
|
|
],
|
|
|
|
'table' => [
|
|
|
|
'base/sort_tables.js',
|
|
|
|
],
|
|
|
|
'table_edit' => [
|
|
|
|
'base/sort_tables.js',
|
|
|
|
'anime_edit.js',
|
|
|
|
'manga_edit.js',
|
|
|
|
],
|
|
|
|
'edit' => [
|
|
|
|
'anime_edit.js',
|
|
|
|
'manga_edit.js',
|
|
|
|
],
|
|
|
|
'anime_collection' => [
|
2018-01-30 16:57:13 -05:00
|
|
|
'anime_search_results.js',
|
2017-04-06 11:45:25 -04:00
|
|
|
'anime_collection.js',
|
|
|
|
],
|
|
|
|
'manga_collection' => [
|
2018-01-30 16:57:13 -05:00
|
|
|
'manga_search_results.js',
|
2017-04-06 11:45:25 -04:00
|
|
|
'manga_collection.js',
|
|
|
|
],
|
|
|
|
]
|
2016-02-03 14:57:00 -05:00
|
|
|
];
|
|
|
|
// End of minify_config.php
|