mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import * as gulp from "gulp";
|
|
import * as gulpCopy from "gulp-copy";
|
|
|
|
gulp.task("copy-files", () => {
|
|
gulp.src("*.nonexistent")
|
|
.pipe(gulpCopy("remove/target/some/non/existent/path", { prefix: 2 }));
|
|
});
|