Skip to content

Commit

Permalink
change a link to the license in the code, add a link to the source
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 5, 2022
1 parent ca3cbdc commit ce0392b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/core-js-builder/config.js
Expand Up @@ -5,9 +5,9 @@ module.exports = {
/* eslint-disable prefer-template -- for better formatting */
banner: '/**\n' +
' * core-js ' + version + '\n' +
' * https://github.com/zloirock/core-js\n' +
' * License: http://rock.mit-license.org\n' +
' * © 2014-2022 Denis Pushkarev (zloirock.ru)\n' +
' * license: https://github.com/zloirock/core-js/blob/v' + version + '/LICENSE\n' +
' * source: https://github.com/zloirock/core-js\n' +
' */',
/* eslint-enable prefer-template -- for better formatting */
};
4 changes: 3 additions & 1 deletion packages/core-js/internals/shared.js
Expand Up @@ -6,5 +6,7 @@ var store = require('../internals/shared-store');
})('versions', []).push({
version: '3.20.2',
mode: IS_PURE ? 'pure' : 'global',
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)'
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
license: 'https://github.com/zloirock/core-js/blob/v3.20.2/LICENSE',
source: 'https://github.com/zloirock/core-js'
});

0 comments on commit ce0392b

Please sign in to comment.