forked from electricessence/TypeScript.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.ts
34 lines (29 loc) · 883 Bytes
/
gulpfile.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// import * as TARGET from "./gulp/constants/Targets";
// import * as MODULE from "./gulp/constants/ModuleTypes";
// import * as TASK from "./gulp/constants/TaskNames";
// import * as gulp from "gulp";
// import * as tsc from "./gulp/tsc";
// This is currently disabled since the output cannot be matched exactly.
// The source files must be build by tsc.exe or WebStorm's built-in tsc.
// =============
// gulp.task(
// // This should render the same output as WebStorm's configuration.
// TASK.SOURCE,
// ()=> tsc.at('./source', TARGET.ES5, MODULE.UMD)
// );
require("./_gulp/tests");
require("./_gulp/dist");
require("./_gulp/bumpVersion");
require("./_gulp/nuget-pack");
require("./_gulp/typedoc");
// gulp.task(
// TASK.BUILD, [
// TASK.SOURCE,
// TASK.DIST,
// TASK.BUILD + ".tests"
// ]
// );
// gulp.task(TASK.DEFAULT, [
// TASK.SOURCE,
// TASK.DIST
// ]);