Nuxt/distributions/nuxt/package.js

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