From 100eb59f173c697b4ec403e0bd29bcc654cd410d Mon Sep 17 00:00:00 2001 From: Filip Rojek Date: Tue, 1 Feb 2022 19:11:54 +0100 Subject: [PATCH] nork works --- src/utils/copyAssets.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/utils/copyAssets.ts 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')