diff --git a/src/utils/copyAssets.ts b/src/utils/copyAssets.ts new file mode 100644 index 0000000..28fd78e --- /dev/null +++ b/src/utils/copyAssets.ts @@ -0,0 +1,7 @@ +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')