Nuxt/distributions/nuxt/package.js
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

14 lines
210 B
JavaScript

export default {
build: true,
hooks: {
async 'build:done' (pkg) {
const mono = pkg.load('../..')
await pkg.copyFilesFrom(mono, [
'LICENSE',
'README.md'
])
}
}
}