Skip to content

Commit

Permalink
fix: some tslint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
chaiyanchen committed May 14, 2019
1 parent 0933c29 commit 1911bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const gulp = require("gulp");
let gulp = require("gulp");
const replace = require('gulp-replace');
const ts = require("gulp-typescript");
const tsProject = ts.createProject("tscompile.json");
const typedoc = require("gulp-typedoc");
const del = require("del");
const inline = require("gulp-inline-template");
var base64 = require('gulp-base64-inline');
const base64 = require('gulp-base64-inline');


gulp.task("build:clean", function() {return del(["build/**", "dist/**"]);});
Expand Down

0 comments on commit 1911bba

Please sign in to comment.