Skip to content
This repository has been archived by the owner on Jun 23, 2019. It is now read-only.

Commit

Permalink
🔥 Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed Mar 29, 2018
1 parent b173366 commit 293cb79
Show file tree
Hide file tree
Showing 5 changed files with 1,606 additions and 813 deletions.
14 changes: 7 additions & 7 deletions gulpfile.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// @ts-check

/** Import project dependencies */
import * as del from 'del';
import * as gulp from 'gulp';
import * as babel from 'gulp-babel';
import * as sq from 'gulp-sequence';
import del from 'del';
import gulp from 'gulp';
import babel from 'gulp-babel';
import sq from 'gulp-sequence';
import lint from 'gulp-tslint';
import * as ts from 'gulp-typescript';
import * as tslint from 'tslint';
import ts from 'gulp-typescript';
import { Linter } from 'tslint';

/** Setting up */
const isProd = process.env.NODE_ENV === 'production';
Expand Down Expand Up @@ -63,7 +63,7 @@ gulp.task('lint', () =>
isProd ? '.prod' : ''
}.json`,
formatter: 'stylish',
program: tslint.Linter.createProgram('./tsconfig.json'),
program: Linter.createProgram('./tsconfig.json'),
}))
.pipe(lint.report()));

Expand Down
Loading

0 comments on commit 293cb79

Please sign in to comment.