File tree Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 1
1
'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
+ */
3
6
7
+ const path = require ( 'path' ) ;
4
8
9
+ // Register TS compilation.
5
10
require ( 'ts-node' ) . register ( {
6
11
project : path . join ( __dirname , 'tools/gulp' )
7
12
} ) ;
Original file line number Diff line number Diff line change 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' ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments