Compare commits

...

2 commits

Author SHA1 Message Date
vlw
7f91b8717c chore: bump npm package version 2024-09-18 12:30:08 +00:00
6b7a88fd3d Add license headers and package reference (#2)
This PR adds a license reference to the NPM package declaration, and also adds license headers to the JS module.

Reviewed-on: https://codeberg.org/vlw/elevent/pulls/2
Co-authored-by: Victor Westerlund <victor.vesterlund@gmail.com>
Co-committed-by: Victor Westerlund <victor.vesterlund@gmail.com>
2024-09-18 12:28:45 +00:00
2 changed files with 5 additions and 2 deletions

View file

@ -1,8 +1,9 @@
{
"name": "elevent",
"version": "1.0.1",
"version": "1.0.2",
"main": "src/Elevent.mjs",
"type": "module",
"license": "GPL-3.0-or-later",
"exports": {
".": {
"import": {

View file

@ -1,3 +1,4 @@
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
export class Elevent {
_type;
_callback;
@ -99,4 +100,5 @@ export class Elevent {
this._boundElements = new WeakSet();
}
}
}
// @license-end