Skip to content

Commit

Permalink
fixed gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Umed Khudoiberdiev committed Apr 19, 2017
1 parent 2d9e900 commit f5f8c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ export class Gulpfile {
@MergedTask()
packageCompile() {
const tsProject = ts.createProject("tsconfig.json");
const tsResult = gulp.src(["src/**/*.ts", "typings/**/*.ts"])
const tsResult = gulp.src(["src/**/*.ts"])
.pipe(sourcemaps.init())
.pipe(ts(tsProject));
.pipe(tsProject());

return [
tsResult.dts.pipe(gulp.dest("build/package")),
Expand Down

0 comments on commit f5f8c00

Please sign in to comment.