Skip to content

Commit

Permalink
Add GPL-3.0-or-later license
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoddo committed Jan 2, 2025
1 parent a5f2551 commit d9941b6
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 1 deletion.
232 changes: 232 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typings/*"
],
"author": "Zoddo <[email protected]>",
"license": "ISC",
"license": "GPL-3.0-or-later",
"dependencies": {
"gelf-pro": "^1.3.12",
"lodash": "^4.17.15"
Expand Down
15 changes: 15 additions & 0 deletions src/Module.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/**
* @Vexera/log npm package
* Copyright (C) Zoddo <[email protected]>
*
* This program is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either version
* 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
import graylog from 'gelf-pro';
import { levels } from './constants';

Expand Down
15 changes: 15 additions & 0 deletions src/callbacks.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/**
* @Vexera/log npm package
* Copyright (C) Zoddo <[email protected]>
*
* This program is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either version
* 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
import { inspect } from 'util';
import { levels } from './constants';
import { config } from './index';
Expand Down
15 changes: 15 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/**
* @Vexera/log npm package
* Copyright (C) Zoddo <[email protected]>
*
* This program is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either version
* 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
import graylog from 'gelf-pro';
import * as constants from './constants';
import * as callbacks from './callbacks';
Expand Down
15 changes: 15 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/**
* @Vexera/log npm package
* Copyright (C) Zoddo <[email protected]>
*
* This program is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either version
* 3 of the License, or any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
import _ from 'lodash';
import { config } from './index';

Expand Down

0 comments on commit d9941b6

Please sign in to comment.