1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 20:27:37 +00:00
Files
TypeScript-Node-Starter/copyStaticAssets.js
Bowden Kelly 6625b87b19 initial commit
2017-05-09 13:28:09 -07:00

5 lines
207 B
JavaScript

var shell = require('shelljs');
shell.cp('-R', 'src/public/js/lib', 'dist/public/js/lib');
shell.cp('-R', 'src/public/fonts', 'dist/public/fonts');
shell.cp('-R', 'src/public/images', 'dist/public/images');