Skip to content

Commit 1cb09a7

Browse files
committed
Adding comment and moving index.ts for tasks to gulpfile.ts. It was confusing
1 parent 4ba2502 commit 1cb09a7

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

gulpfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
'use strict';
2-
const path = require('path');
2+
/**
3+
* Load the TypeScript compiler, then load the TypeScript gulpfile which simply loads all
4+
* the tasks. The tasks are really inside tools/gulp/tasks.
5+
*/
36

7+
const path = require('path');
48

9+
// Register TS compilation.
510
require('ts-node').register({
611
project: path.join(__dirname, 'tools/gulp')
712
});

tools/gulp/gulpfile.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
import './tasks';
1+
import './tasks/ci';
2+
import './tasks/clean';
3+
import './tasks/components';
4+
import './tasks/default';
5+
import './tasks/development';
6+
import './tasks/e2e';
7+
import './tasks/lint';
8+
import './tasks/release';
9+
import './tasks/serve';
10+
import './tasks/spec';

tools/gulp/tasks/index.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)