Blame view

gulpfile.js 231 Bytes
66ee5529f   Palak Handa   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  'use strict';
  
  var gulp = require('gulp');
  
  gulp.paths = {
    src: 'src',
    dist: 'dist',
    tmp: '.tmp',
    e2e: 'e2e'
  };
  
  require('require-dir')('./gulp');
  
  gulp.task('default', ['clean'], function () {
      gulp.start('build');
  });