Skip to content

Commit 4c7d358

Browse files
committed
Add GPLv2 to banner in generated .js files
1 parent 759762c commit 4c7d358

File tree

3 files changed

+42
-49
lines changed

3 files changed

+42
-49
lines changed

package-lock.json

Lines changed: 35 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hebcal/core",
3-
"version": "5.8.8",
3+
"version": "5.8.9",
44
"author": "Michael J. Radwin (https://github.com/mjradwin)",
55
"contributors": [
66
"Eyal Schachter (https://github.com/Scimonster)",
@@ -86,14 +86,13 @@
8686
"pretty-bytes": "^6.1.1",
8787
"rollup": "^4.29.1",
8888
"rollup-plugin-bundle-size": "^1.0.3",
89-
"rollup-plugin-visualizer": "^5.12.0",
90-
"typedoc": "^0.27.5",
89+
"rollup-plugin-visualizer": "^5.13.1",
90+
"typedoc": "^0.27.6",
9191
"typescript": "^5.7.2",
9292
"vitest": "^2.1.8"
9393
},
9494
"dependencies": {
95-
"@babel/runtime": "^7.26.0",
96-
"@hebcal/hdate": "^0.13.2",
95+
"@hebcal/hdate": "^0.13.3",
9796
"@hebcal/noaa": "^0.8.16",
9897
"quick-lru": "^6.1.2",
9998
"temporal-polyfill": "^0.2.5",

rollup.config.cjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ const typescript = require('@rollup/plugin-typescript');
88
const pkg = require('./package.json');
99
const {defineConfig} = require('rollup');
1010

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

1315
const TARGETS_BROWSER = {
1416
chrome: '103',

0 commit comments

Comments
 (0)