2018-10-17 21:28:25 +00:00
|
|
|
export default {
|
|
|
|
build: true,
|
2018-11-27 15:32:00 +00:00
|
|
|
hooks: {
|
2019-07-10 10:45:49 +00:00
|
|
|
async 'build:done' (pkg) {
|
2018-11-27 15:32:00 +00:00
|
|
|
const mono = pkg.load('../..')
|
2018-10-17 21:28:25 +00:00
|
|
|
|
2018-11-27 15:32:00 +00:00
|
|
|
await pkg.copyFilesFrom(mono, [
|
2018-11-16 14:59:34 +00:00
|
|
|
'LICENSE',
|
|
|
|
'README.md'
|
2018-10-17 21:28:25 +00:00
|
|
|
])
|
2018-11-27 15:32:00 +00:00
|
|
|
}
|
2020-12-22 17:07:50 +00:00
|
|
|
},
|
|
|
|
ignoreUnused: [
|
|
|
|
// used by postinstall
|
|
|
|
'@nuxt/opencollective',
|
|
|
|
// discovered by config
|
|
|
|
'@nuxt/components',
|
|
|
|
'@nuxt/loading-screen',
|
2020-12-22 22:06:08 +00:00
|
|
|
'@nuxt/telemetry',
|
|
|
|
// Distro
|
|
|
|
'@nuxt/babel-preset-app',
|
|
|
|
'@nuxt/config',
|
|
|
|
'@nuxt/server',
|
|
|
|
'@nuxt/utils',
|
|
|
|
'@nuxt/vue-app',
|
|
|
|
'@nuxt/vue-renderer',
|
|
|
|
'@nuxt/webpack'
|
2020-12-22 17:07:50 +00:00
|
|
|
]
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|