UNPKG

377 BJavaScriptView Raw
1/**
2 * Created by Nikolay Glushchenko <nick@nickalie.com> on 08.09.2015.
3 */
4
5var gulp = require('gulp');
6var replaceAll = require('./common').replaceAll;
7
8module.exports = function ()
9{
10 gulp.src('resources/**/*')
11 .pipe(gulp.dest("build"))
12 .pipe(replaceAll());
13
14 return gulp.src("*.html")
15 .pipe(replaceAll())
16 .pipe(gulp.dest("build"));
17};
\No newline at end of file