Skip to content

Commit

Permalink
Add GPLv2 to banner in generated .js files
Browse files Browse the repository at this point in the history
  • Loading branch information
mjradwin committed Dec 31, 2024
1 parent 759762c commit 4c7d358
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 49 deletions.
78 changes: 35 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hebcal/core",
"version": "5.8.8",
"version": "5.8.9",
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"contributors": [
"Eyal Schachter (https://github.com/Scimonster)",
Expand Down Expand Up @@ -86,14 +86,13 @@
"pretty-bytes": "^6.1.1",
"rollup": "^4.29.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-visualizer": "^5.12.0",
"typedoc": "^0.27.5",
"rollup-plugin-visualizer": "^5.13.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@hebcal/hdate": "^0.13.2",
"@hebcal/hdate": "^0.13.3",
"@hebcal/noaa": "^0.8.16",
"quick-lru": "^6.1.2",
"temporal-polyfill": "^0.2.5",
Expand Down
4 changes: 3 additions & 1 deletion rollup.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ const typescript = require('@rollup/plugin-typescript');
const pkg = require('./package.json');
const {defineConfig} = require('rollup');

const banner = '/*! ' + pkg.name + ' v' + pkg.version + ' */';
const banner = '/*! ' + pkg.name +
' v' + pkg.version +
', distributed under GPLv2 https://www.gnu.org/licenses/gpl-2.0.txt */';

const TARGETS_BROWSER = {
chrome: '103',
Expand Down

0 comments on commit 4c7d358

Please sign in to comment.