chore: simplify contributors (#8808)

[release]
This commit is contained in:
pooya parsa 2021-02-10 15:06:04 +01:00 committed by GitHub
parent 89cc911a89
commit 04646c5e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 86 deletions

File diff suppressed because one or more lines are too long

View File

@ -19,35 +19,6 @@
"homepage": "https://github.com/nuxt/nuxt.js#readme",
"repository": "nuxt/nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Clark Du (@clarkdo)"
},
{
"name": "Jonas Galvez (@galvez)"
},
{
"name": "Alexander Lichter (@manniL)"
},
{
"name": "Dmitry Molotkov (@aldarund)"
},
{
"name": "Kevin Marrec (@kevinmarrec)"
},
{
"name": "Pim (@pimlie)"
}
],
"main": "dist/nuxt-start.js",
"bin": "bin/nuxt-start.js",
"files": [

File diff suppressed because one or more lines are too long

View File

@ -18,35 +18,6 @@
],
"repository": "nuxt/nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Clark Du (@clarkdo)"
},
{
"name": "Jonas Galvez (@galvez)"
},
{
"name": "Alexander Lichter (@manniL)"
},
{
"name": "Dmitry Molotkov (@aldarund)"
},
{
"name": "Kevin Marrec (@kevinmarrec)"
},
{
"name": "Pim (@pimlie)"
}
],
"main": "dist/nuxt.js",
"bin": {
"nuxt": "./bin/nuxt.js"

View File

@ -22,7 +22,9 @@ const knownAuthors = [
'lichter',
'molotkov',
'marrec',
'pim'
'pim',
'daniel roe',
'danielroe'
]
const isKnownAuthor = name => Boolean(knownAuthors.find(n => name.toLowerCase().includes(n)))

View File

@ -55,9 +55,8 @@ export default function rollupConfig ({
banner: [
'/*!',
` * ${pkg.name} v${pkg.version} (c) 2016-${new Date().getFullYear()}`,
`${(pkg.contributors || []).map(c => ` * - ${c.name}`).join('\n')}`,
' * - All the amazing contributors',
' * Released under the MIT License.',
' * Released under the MIT License',
' * Repository: https://github.com/nuxt/nuxt.js',
' * Website: https://nuxtjs.org',
'*/'
].join('\n')