Files
DefinitelyTyped/gulp-copy/gulp-copy-tests.ts
2016-11-04 13:48:19 -07:00

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 }));
});