-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI/Metabar: engage/disengage more-button
- Loading branch information
Showing
10 changed files
with
648 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,51 @@ | ||
export default { | ||
input: './src/mainbar.js', | ||
output: { | ||
file: './dist/mainbar.js', | ||
format: 'es' | ||
} | ||
}; | ||
/** | ||
* This file is part of ILIAS, a powerful learning management system | ||
* published by ILIAS open source e-Learning e.V. | ||
* | ||
* ILIAS is licensed with the GPL-3.0, | ||
* see https://www.gnu.org/licenses/gpl-3.0.en.html | ||
* You should have received a copy of said license along with the | ||
* source code, too. | ||
* | ||
* If this is not the case or you just want to try ILIAS, you'll find | ||
* us at: | ||
* https://www.ilias.de | ||
* https://github.com/ILIAS-eLearning | ||
* | ||
******************************************************************** */ | ||
|
||
import terser from '@rollup/plugin-terser'; | ||
import copyright from '../../../../../CI/Copyright-Checker/copyright'; | ||
import preserveCopyright from '../../../../../CI/Copyright-Checker/preserveCopyright'; | ||
|
||
export default [ | ||
{ | ||
input: './src/mainbar.js', | ||
output: { | ||
file: './dist/mainbar.js', | ||
format: 'es', | ||
}, | ||
}, | ||
|
||
{ | ||
input: './src/maincontrols.js', | ||
output: { | ||
file: './dist/maincontrols.min.js', | ||
format: 'iife', | ||
banner: copyright, | ||
plugins: [ | ||
terser({ | ||
format: { | ||
comments: preserveCopyright, | ||
}, | ||
}), | ||
], | ||
globals: { | ||
il: 'il', | ||
jquery: '$', | ||
}, | ||
}, | ||
external: ['il', 'jquery'], | ||
}, | ||
|
||
]; |
Oops, something went wrong.