Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

use import instead of require in copyStaticAssets.ts #99

Merged
merged 1 commit into from
Mar 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion copyStaticAssets.ts
Original file line number Diff line number Diff line change
@@ -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/");
Expand Down