mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* gulp-header * remove tslint rules * fix * fix * fix * fix * fix gulp header version * fix * strictNullChecks true * remove empty namespace
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import * as gulp from "gulp";
|
|
import header = require("gulp-header");
|
|
|
|
gulp.task('templates', () => {
|
|
gulp
|
|
.src(['file.txt'])
|
|
.pipe(header('Header'))
|
|
.pipe(gulp.dest('build/file.txt'));
|
|
});
|