-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.js
More file actions
51 lines (47 loc) · 997 Bytes
/
build.js
File metadata and controls
51 lines (47 loc) · 997 Bytes
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
const es = require('event-stream');
const gulp = require('gulp');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
const minifyCss = require('gulp-minify-css');
const DEST_PATH = './dist';
gulp.task(
'build-js',
function () {
gulp.src([
'lib/*.js',
'node_modules/markdown-it/dist/markdown-it.min.js'
])
.pipe(concat('markdown-editor.js'))
.pipe(uglify())
.pipe(
es.map(function (file, callback) {
file.contents = new Buffer(
'(function (window) {' +
file.contents +
'window.MarkdownEditor = MarkdownEditor;'+
'})(window);'
);
callback(null, file);
})
)
.pipe(gulp.dest(DEST_PATH));
}
);
gulp.task(
'build-css',
function () {
gulp.src([
'lib/*.css'
])
.pipe(concat('markdown-editor.css'))
.pipe(minifyCss())
.pipe(gulp.dest(DEST_PATH));
}
);
gulp.task(
'build',
[
'build-js',
'build-css'
]
);