-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
72 lines (56 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"use strict";
var gulp = require("gulp");
var gutil = require("gulp-util");
var webpack = require("webpack");
var webpackConfig = require("./webpack.config.js");
var livereload = require("livereload");
var path = require("path");
// default task: copy assest and build js
gulp.task("default", ["assets", "webpack:build"]);
gulp.task("dev", ["assets"], function(){
livereload = livereload.createServer();
livereload.watch( path.join(__dirname, "/dist"));
});
gulp.task("webpack:build", function(done) {
webpack(webpackConfig, function(err, stats) {
if(err) {
throw new gutil.PluginError("webpack:build", err);
}
gutil.log("[webpack:build]", stats.toString({
colors: true
}));
done();
});
});
/**
* assets tasks
*/
gulp.task("assets", ["assets:html", "assets:static", "markdown"]);
gulp.task("assets:static", function(){
return gulp.src(["assets/**/*", "!assets/index.html"])
.pipe(gulp.dest("dist/assets"));
});
gulp.task("assets:html", function(){
return gulp.src("assets/index.html")
.pipe(gulp.dest("dist/"));
});
gulp.task("markdown", function(){
return gulp.src("md/*.md")
.pipe(markdown())
.pipe(gulp.dest("dist/json/"));
});
/**
* markdown transformation task
* @type {[type]}
*/
var through = require("through2");
var marked = require("meta-marked");
function markdown(options){
return through.obj(function(file, enc, cb){
var contents = file.contents.toString();
var data = marked(contents, options );
file.contents = new Buffer(JSON.stringify(data));
file.path = gutil.replaceExtension(file.path, ".json");
cb(null, file);
});
}