mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
import * as gulp from "gulp";
|
|
import gulpCopy = require("gulp-copy");
|
|
|
|
gulp.task("copy-files", () => {
|
|
gulp.src("*.nonexistent")
|
|
.pipe(gulpCopy("remove/target/some/non/existent/path", { prefix: 2 }));
|
|
});
|