Nuxt/distributions/nuxt/package.js
2018-11-27 19:02:00 +03:30

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'
])
}
}
}