mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
74d3bdcafb
[skip release]
14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
export default {
|
|
build: true,
|
|
hooks: {
|
|
async 'build:done'(pkg) {
|
|
const mono = pkg.load('../..')
|
|
|
|
await pkg.copyFilesFrom(mono, [
|
|
'LICENSE',
|
|
'README.md'
|
|
])
|
|
}
|
|
}
|
|
}
|