1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 23:07:20 +00:00
Files
TypeScript-Node-Starter/copyStaticAssets.js
2017-07-19 17:07:35 +08:00

6 lines
194 B
JavaScript

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