Files
deguapp/api/src/utils/copy_assets.ts
2024-05-12 22:19:04 +02:00

7 lines
181 B
TypeScript

import * as shell from "shelljs";
// Copy all the view templates
//shell.cp('-R', 'src/views', 'dist/')
shell.cp("-R", "src/public", "dist/");
shell.cp("-u", "src/.env", "dist/");