mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
dec8f99fc3
Co-authored-by: Clark Du <clark.duxin@gmail.com>
38 lines
673 B
JavaScript
38 lines
673 B
JavaScript
export default {
|
|
build: true,
|
|
hooks: {
|
|
async 'build:done' (pkg) {
|
|
const mono = pkg.load('../..')
|
|
const nuxt = pkg.load('../nuxt')
|
|
|
|
await pkg.copyFilesFrom(mono, [
|
|
'LICENSE'
|
|
])
|
|
|
|
pkg.copyFieldsFrom(nuxt, [
|
|
'license',
|
|
'repository',
|
|
'contributors',
|
|
'keywords',
|
|
'engines'
|
|
])
|
|
|
|
await pkg.writePackage()
|
|
}
|
|
},
|
|
ignoreUnused: [
|
|
// directly used by bin
|
|
'@nuxt/cli',
|
|
// discovered by config
|
|
'@nuxt/telemetry',
|
|
// vue-app externals for ssr
|
|
'node-fetch',
|
|
'vue',
|
|
'vue-client-only',
|
|
'vue-meta',
|
|
'vue-no-ssr',
|
|
'vue-router',
|
|
'vuex'
|
|
]
|
|
}
|