Skip to content

Commit ce0392b

Browse files
committedJan 5, 2022
change a link to the license in the code, add a link to the source
1 parent ca3cbdc commit ce0392b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎packages/core-js-builder/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ module.exports = {
55
/* eslint-disable prefer-template -- for better formatting */
66
banner: '/**\n' +
77
' * core-js ' + version + '\n' +
8-
' * https://github.com/zloirock/core-js\n' +
9-
' * License: http://rock.mit-license.org\n' +
108
' * © 2014-2022 Denis Pushkarev (zloirock.ru)\n' +
9+
' * license: https://github.com/zloirock/core-js/blob/v' + version + '/LICENSE\n' +
10+
' * source: https://github.com/zloirock/core-js\n' +
1111
' */',
1212
/* eslint-enable prefer-template -- for better formatting */
1313
};

‎packages/core-js/internals/shared.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ var store = require('../internals/shared-store');
66
})('versions', []).push({
77
version: '3.20.2',
88
mode: IS_PURE ? 'pure' : 'global',
9-
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)'
9+
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
10+
license: 'https://github.com/zloirock/core-js/blob/v3.20.2/LICENSE',
11+
source: 'https://github.com/zloirock/core-js'
1012
});

0 commit comments

Comments
 (0)
Please sign in to comment.