94189a72c3
* refactor(deps): added tslint, cleanup, and activationEvents modified * refactor(lint): linting... * refactor(changelog): changelo method refactor (should be tested) * refactor(theme-icons): linting and small refactor * refactor(accents-setter): linting and small refactor * chore(travis): added travis file
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import * as Gulp from 'gulp';
|
|
import * as GulpStats from 'gulp-stats';
|
|
import * as tasks from './.gulp';
|
|
|
|
// Use gulp-stats
|
|
GulpStats(Gulp);
|
|
|
|
// set default task
|
|
Gulp.task('default', tasks.default as any);
|