mtcute/packages/create-bot/build.config.js

10 lines
259 B
JavaScript
Raw Normal View History

2024-08-21 11:05:07 +03:00
import { resolve } from 'node:path'
import { cpSync } from 'node:fs'
export default () => ({
buildCjs: false,
final({ outDir, packageDir }) {
cpSync(resolve(packageDir, 'template'), resolve(outDir, 'template'), { recursive: true })
},
})