1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2026-03-22 04:38:57 +00:00

Merge pull request #24 from kevguy/fix-copy

fix: copying issues
This commit is contained in:
Bowden Kelly
2017-07-20 14:15:03 -07:00
committed by GitHub
2 changed files with 3 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
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');
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/');

View File

@@ -9,4 +9,3 @@ export let index = (req: Request, res: Response) => {
title: "Home"
});
};