1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 12:07:34 +00:00

use import instead of require in ts file

This commit is contained in:
Meir017
2018-03-21 10:34:12 +02:00
committed by GitHub
parent bf0a030897
commit f080b11cfd

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/");