Add missing banner with copyright and license

This commit is contained in:
Carsten Grohmann 2021-12-26 23:14:27 +01:00
parent ef045232d1
commit f304e205fb
2 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,11 @@
<!DOCTYPE html>
<!--
HTML for OOMAnalyser
Copyright (c) 2017-2021 Carsten Grohmann
License: MIT (see LICENSE.txt)
THIS PROGRAM COMES WITH NO WARRANTY
-->
<html lang="en">
<head>
<script defer="defer" src="OOMAnalyser.js"></script>

View File

@ -9,6 +9,11 @@ export default {
output: {
file: 'OOMAnalyser.js',
name: 'OOMAnalyser',
banner: '// JavaScript for OOMAnalyser\n' +
'//\n' +
'// Copyright (c) 2017-2021 Carsten Grohmann\n' +
'// License: MIT (see LICENSE.txt)\n' +
'// THIS PROGRAM COMES WITH NO WARRANTY',
format: 'umd'
}
};