mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-21 07:59:33 +00:00
parent
89cc911a89
commit
04646c5e70
@ -19,35 +19,6 @@
|
|||||||
"homepage": "https://github.com/nuxt/nuxt.js#readme",
|
"homepage": "https://github.com/nuxt/nuxt.js#readme",
|
||||||
"repository": "nuxt/nuxt.js",
|
"repository": "nuxt/nuxt.js",
|
||||||
"license": "MIT",
|
"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",
|
"main": "dist/nuxt-start.js",
|
||||||
"bin": "bin/nuxt-start.js",
|
"bin": "bin/nuxt-start.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
File diff suppressed because one or more lines are too long
@ -18,35 +18,6 @@
|
|||||||
],
|
],
|
||||||
"repository": "nuxt/nuxt.js",
|
"repository": "nuxt/nuxt.js",
|
||||||
"license": "MIT",
|
"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",
|
"main": "dist/nuxt.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
"nuxt": "./bin/nuxt.js"
|
"nuxt": "./bin/nuxt.js"
|
||||||
|
@ -22,7 +22,9 @@ const knownAuthors = [
|
|||||||
'lichter',
|
'lichter',
|
||||||
'molotkov',
|
'molotkov',
|
||||||
'marrec',
|
'marrec',
|
||||||
'pim'
|
'pim',
|
||||||
|
'daniel roe',
|
||||||
|
'danielroe'
|
||||||
]
|
]
|
||||||
|
|
||||||
const isKnownAuthor = name => Boolean(knownAuthors.find(n => name.toLowerCase().includes(n)))
|
const isKnownAuthor = name => Boolean(knownAuthors.find(n => name.toLowerCase().includes(n)))
|
||||||
|
@ -55,9 +55,8 @@ export default function rollupConfig ({
|
|||||||
banner: [
|
banner: [
|
||||||
'/*!',
|
'/*!',
|
||||||
` * ${pkg.name} v${pkg.version} (c) 2016-${new Date().getFullYear()}`,
|
` * ${pkg.name} v${pkg.version} (c) 2016-${new Date().getFullYear()}`,
|
||||||
`${(pkg.contributors || []).map(c => ` * - ${c.name}`).join('\n')}`,
|
' * Released under the MIT License',
|
||||||
' * - All the amazing contributors',
|
' * Repository: https://github.com/nuxt/nuxt.js',
|
||||||
' * Released under the MIT License.',
|
|
||||||
' * Website: https://nuxtjs.org',
|
' * Website: https://nuxtjs.org',
|
||||||
'*/'
|
'*/'
|
||||||
].join('\n')
|
].join('\n')
|
||||||
|
Loading…
Reference in New Issue
Block a user