-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
55 lines (45 loc) · 1.26 KB
/
gulpfile.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var gulp = require('gulp');
var gulpLoadPlugins = require('gulp-load-plugins');
var $ = gulpLoadPlugins();
var watching = false;
gulp.on("stop", function() {
if (!watching) {
process.nextTick(function() {
process.exit(0)
});
}
});
var options = {
typeScript: {
target: "app/js"
},
test: {
source: "test/**/*.ts",
target: "compiled/test"
},
sass: {
source: ["stylesheets/*.scss", "decorators/*.scss"],
target: {
directory: "app/css/",
fileName: "style.css"
},
config: {
errLogToConsole: true
}
}
};
gulp.task("typescript", $.shell.task("tsc -p ./src/"));
gulp.task("browserify", ["build"], $.shell.task("browserify ./compiled/index.js" +
" -o ./app/js/bundle.js"));
gulp.task("sass", function() {
return gulp.src(options.sass.source)
.pipe($.cached("sass"))
.pipe($.sass(options.sass.config))
.pipe($.concat(options.sass.target.fileName))
.pipe(gulp.dest(options.sass.target.directory))
});
gulp.task("clean", function() {
return require("del").sync([options.typeScript.target + "/**"]);
});
gulp.task("build", ["typescript", "sass"]);
gulp.task("default", ["browserify"]);