Skip to content

Commit

Permalink
feat: configurable timestamp to check as payload
Browse files Browse the repository at this point in the history
  • Loading branch information
naimo84 committed Feb 12, 2021
1 parent f42731c commit 71547e3
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 7,684 deletions.
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var gulp = require("gulp");
var ts = require("gulp-typescript");
var tsProject = ts.createProject("tsconfig.json");

var sourcemaps = require('gulp-sourcemaps');
var nodemon = require('gulp-nodemon');
var watch = require('gulp-watch');
Expand Down Expand Up @@ -32,6 +32,7 @@ gulp.task('develop', function (done) {
});

copyHtml();
var tsProject = ts.createProject("tsconfig.json");
tsProject.src()
.pipe(sourcemaps.init())
.pipe(tsProject())
Expand Down Expand Up @@ -68,6 +69,7 @@ gulp.task('develop', function (done) {
gulp.task("default", gulp.series(
gulp.parallel('copy-html'),
() => {
var tsProject = ts.createProject("tsconfig.json");
return tsProject.src()
.pipe(sourcemaps.init())
.pipe(tsProject())
Expand Down
Loading

0 comments on commit 71547e3

Please sign in to comment.