nork/src/utils/copyAssets.ts
2022-02-01 19:11:54 +01:00

8 lines
193 B
TypeScript

import * as shell from 'shelljs'
shell.cp('-R', 'src/skeletons', 'dist/')
shell.cp('-R', 'src/interfaces', 'dist/')
shell.cp('-R', 'src/make-files', 'dist/')
shell.chmod('+x', 'dist/app.js')