1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

Merge pull request #99 from Meir017/patch-1

use import instead of require in copyStaticAssets.ts
This commit is contained in:
Bowden Kelly
2018-03-22 11:33:47 -07:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
const shell = require("shelljs");
import * as shell from "shelljs";
shell.cp("-R", "src/public/js/lib", "dist/public/js/");
shell.cp("-R", "src/public/fonts", "dist/public/");